user2015117
user2015117

Reputation: 15

Custom Google Maps Overlay like Disney Maps

I am interested in creating a google map like this https://disneyworld.disney.go.com/maps/ but I am having trouble finding information on how to go about it. I've looked on the googlemaps api but I can only see how to change the tiles on one zoom level and the colors. Can anyone point me in the right direction to create something like this?

Upvotes: 1

Views: 1304

Answers (1)

js1568
js1568

Reputation: 7032

The tiles are served from a GIS tile server. Google Maps requests tiles using three parameters: X, Y, and Z (can be thought of as Lat, Long, and Zoom). The server gives entirely different tiles based on the zoom level (more detailed location items and labels). Google Maps doesn't do much work at all in this instance, it is all handled by the server and Google Maps renders what it is given.

Upvotes: 1

Related Questions