-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmin_max_range.earth
30 lines (23 loc) · 946 Bytes
/
min_max_range.earth
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!--
Demonstrates the "min_range" and "max_range" properties.
As you zoom in, you will see the aerial imagery transition into
a street map. Zoom in further and see it transition back to aerial.
TIP: set your OSG_NUM_HTTP_DATABASE_THREADS to 4 or more!
-->
<map name="MapQuest Open Aerial" type="geocentric" version="2">
<image name="mapquest_open_aerial" driver="xyz">
<url>http://oatile[1234].mqcdn.com/naip/{z}/{x}/{y}.jpg</url>
<profile>spherical-mercator</profile>
</image>
<image name="mapquest_osm" driver="xyz" max_range="5e6" min_range="1e6">
<url>http://otile[1234].mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg</url>
<profile>global-mercator</profile>
</image>
<options>
<lighting>false</lighting>
<cache_policy usage="no_cache"/>
<terrain>
<min_tile_range_factor>9</min_tile_range_factor>
</terrain>
</options>
</map>