Is it possible to open map file at local computer (offline) using google map API? If yes, How?
I have programed an application in delphi. It shows the company cars on the map. but now we need the map to be offline. I have *.map file and may be I can find other map file from internet. I have not a point where to start at all. What do I have to do? tnx.
Is it possible to open map file at local computer (offline) using google map
Share
The google maps works by transferring data asynchronously from Google’s servers to a user’s computer. So if you are offline there’s no way to communicate with Google’s servers and retrieve such info. Even if you accomplish store the cached google maps and display offline you must follow the Google Maps API Terms of Service.
As alternative you can use the
Google Static Maps API V2service you can retrieve a image, which can be saved to a file, basically you need build a URI like soAnd the using a GET you save the response in a file, check this article for a delphi sample
Using Google maps (Static Maps) without TWebBrowser