An Umbraco Datatype that enables you to create routes directly in the backend. The data is saved as JSON so its easy to use.
You can also import KML files into your maps(Only KMLs with only one <Placemark> since its for routes).
When you have installed the package you will find a new datatype named "uRouteMeUp", insert this into your favorit documenttype and start planning routes.
You can spin your own edition here if you need:
https://bitbucket.org/Rasmusfjord/package-umbraco-route-creator-datatype/overview
The JSON looks like this :
"Positions": [
{ "latitude": 55.46017083861817, "longitude": 8.701171875 },
{ "latitude": 55.46017083861817, "longitude": 8.701171875 }
],
"Zoom": 1,
"Distance":0,
"WindowPosition": { "latitude": 55.46017083861817, "longitude": 8.701171875 }
The project also contains a Model to make working with it alot easier, check out the razor example under documentation.
Version log
V1.2 - Saves the position of the window into the model aswell.
V1.1 - Kml Upload is now available(Ie9 and down not working)
v1.0 - Release