Topic: question about online maps asset

Hello, I don't yet have this asset but I was wondering about what parts of it need paid subscriptions to third party services and which are essentially free. I know the Google and Bing apis require paid subs, but I think the OpenStreetMaps is a free api right?What about the satellite images? Also in the cases of using a paid service, I saw that this asset allows some level of downloading data to local storage, is it actually possible to download the entire planet data for say something like terrain heightmaps and 3d building dimensions, in order to avoid needing to use any third party services (after the initial data download), or is that just going to be way too much data?

Re: question about online maps asset

Hello.

Paid subscriptions depend on the services you plan to use.
Online Maps contains paid and free sources of tiles and services.
Online Maps has no hidden paid services, so you decide which service you want to use.

Satellite imagery fees are also source dependent.
For example, in ArcGIS it is free and does not use keys.
An official example:
https://developers.arcgis.com/rest/serv … p-tile.htm

You cannot download the entire world, simply because it will require terabytes (and in some cases petabytes) of free space.

Kind Regards,
Infinity Code Team.

Boost your productivity a lot and immediately using Ultimate Editor Enhancer. Trial and non-commerce versions available.

3 (edited by disastorm 2020-09-21 17:54:06)

Re: question about online maps asset

cool, thanks for the info.

*edit
Is there a way to traverse the map infinitely and have it constantly pull in the new tiles and load them in? So for example on this video: https://www.youtube.com/watch?v=BubHVdThEJo at some point I imagine new textures, tile data would need to be loaded in if the car got far enough from the starting position.

if loading in these new tiles is supported, how is the performance, does it use multi threading/coroutines/etc to pull in the data and do relevant calculations for terrain elevation, building placement, etc?

Re: question about online maps asset

Online Maps automatically downloads required tiles and unloads unused tiles.
Actually, this is the basic thing for any mapping solution.

The map can be infinite horizontally, and is limited to latitude from 90 to -90 vertically.

Yes, Online Maps uses multithreading and coroutines where required and has good performance.

Kind Regards,
Infinity Code Team.

Boost your productivity a lot and immediately using Ultimate Editor Enhancer. Trial and non-commerce versions available.

Re: question about online maps asset

ok thanks