-
Notifications
You must be signed in to change notification settings - Fork 75
Tile Sources
jaakla edited this page Oct 29, 2014
·
35 revisions
Nutiteq SDK is map agnostic, it means that you can technically use any map source (your own, 3rd party etc), and by default we don't bundle any map source with the SDK. You may be interested on following sources of map tiles:
Source | URL | Sample | Terms |
---|---|---|---|
OpenStreetMap Mapnik tiles | Code | Free for limited use. See tile usage policy. | |
MapBox Streets | Code | MapBox Terms & Feedback. Please create your map to use own account and map IDs. | |
MapBox Satellite | Code | MapBox Terms & Feedback. Please create your map to use own account and map IDs. | |
Stamen Toner | Code | Please contact http://www.stamen.com | |
Stamen Watercolor | Code | Please contact http://www.stamen.com | |
Stamen Terrain - US only | Code | Please contact http://www.stamen.com | |
MapQuest Open Tiles | Code | Free. Please place “Tiles Courtesy of MapQuest ” on your page, or in the copyright area of the map and link the word “MapQuest” to http://www.mapquest.com. | |
MapQuest Open Aerial | Code | Free, but limited number of zooms. Please place “Tiles Courtesy of MapQuest ” on your page, or in the copyright area of the map and link the word “MapQuest” to http://www.mapquest.com. | |
Microsoft Bing Maps | Code | Commercial terms of Bing Maps API. Must use Get Imagery Metadata Bing Service to get supported URL parameters. | |
Microsoft Bing Aerials | Code | Commercial terms of Bing Maps API. Must use Get Imagery Metadata Bing Service to get supported URL parameters. | |
OpenCycleMap | Code | © OpenCycleMap | |
OpenCycleMap Transport | Code | Free to use. Source: Thunderforest |
Note: the code given in the table shows how to construct a tile data source. In order to use this data source, the following template can be used:
mapView.getLayers().setBaseLayer(new RasterLayer(dataSource, id))
where dataSource is assigned with construction code from the table and id is a unique id for each layer.