Google Map offline in web application

How to upload all the images on a Google map to use offline access in a web application forever?

I can perform online operations using

src="//maps.googleapis.com/maps/api/js?sensor=false&language=en" 

but I need offline access forever, downloading everything once on the Internet.

+2
source share
1 answer

I am afraid that the solution you are trying to implement is contrary to the terms of service. See paragraphs 10.1 (a):

There is no access to the API or Content except through the service . You will not access the Maps API (s) or Content except the Service. For example, you should not access maps or images through interfaces or channels (including Google's undocumented interfaces) other than the Maps API (s).

and 10.5 (d) of ToS:

No caching or storage . You will not pre-select, cache, index or store any content that will be used outside the Service, except that you can store limited amounts of content solely to increase the efficiency of the implementation of the Maps API due to network latency (and not to prevent Google from accurate tracking of use), and only if such a store: is temporary (and in no case more than 30 calendar days); is safe; Does not manipulate or aggregate any part of the Content or the Service; nor does it change the attribution in any way.

https://developers.google.com/maps/terms#10-license-restrictions

Access to offline access through the JavaScript Maps API is currently unavailable. In the public tracker there is a function request:

https://issuetracker.google.com/issues/35827808

Submit a request for this feature to express your interest and receive further updates from Google.

+5
source

All Articles