Tamir
Tamir

Reputation: 2533

Here.com (Nokia maps) maps styling and color change

I am discovering usage of web maps by here.com (Navteq, Nokia) and wondering is there any option to perform color styling of the map (just like Google allows)?

Upvotes: 0

Views: 2298

Answers (1)

Jason Fox
Jason Fox

Reputation: 5290

You can change the baseMapType to use any custom ImgTileProvider by updating the property as shown:

 map.set('baseMapType', baseMapProvider);

The Maps API for JavaScript already provides standard providers for Street Maps (Display.NORMAL), Satellite Imagery (Display.SATELLITE) and terrain maps (Display.TERRAIN). If you want to extend this further, you'll need to look at the Map Tile API which offers a wider range of colors and options (and explains how to create the appropriate URLs)

enter image description here

Normal Street Map

enter image description here

Fleet Map (add style=fleet to the URLs)

enter image description here

Night mode gray

enter image description here

Day mode grey

The following map tile example on the HERE Maps Github Pages showcases a wide range of available tile provider options.

Upvotes: 1

Related Questions