I am new to maps. I am playing to use the OpenStreetMap API. I want to consume this API in my asp.net web applications. I want to implement below features using OpenStreetMap API.
Can any one help me how to achieve these by using OpenStreetMap API asked 24 Dec '13, 11:27 allemahesh Vincent de P... ♦ |
The osm API does not have that kind of features. Its purpose is to edit the map data, not to draw markers, polygons, etc on the map. To do the later, see (amonst others) the leaflet or openlayers libraries. Some third-party websites such as umap or mapbbshare also do somthing very similar. answered 24 Dec '13, 12:57 Vincent de P... ♦ You might want to check here for additional widgets/components http://wiki.openstreetmap.org/wiki/Frameworks
(27 Dec '13, 16:18)
iii
|
If you're looking for a place to obtain data from prior to displaying it in an on-screen map, the OSM API probably isn't the best place (it's intended to be used for editing, not creating maps from). Instead, perhaps Overpass might be a place to look. It'll get you exactly the same data, but in a way that doesn't overload OSM's servers. You can also of course just download the data. With regard to routing, you're probably best just starting from the wiki page. There are offline routers available that you can deploy, and existing instances of them. If you want to do routing in-client you'll probably find some pointers there for that too. answered 24 Dec '13, 14:49 SomeoneElse ♦ |
found a new one: have a look at http://geojson.io and read its help text. You can draw geometries, display markers according to coordinate tables, overlay GPX or KML data, and finally share your map even privately. answered 07 Jun '14, 09:44 stephan75 |