2018-01-20 11:01:59 -05:00
|
|
|
____ OpenStreetMap Addon ____
|
2012-02-19 08:28:43 -05:00
|
|
|
by Mike Macgirvin
|
|
|
|
Klaus Weidenbach
|
|
|
|
|
|
|
|
This addon allows you to use OpenStreetMap for displaying locations.
|
|
|
|
|
|
|
|
___ Requirements ___
|
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
To use this addon you need a tile Server that provides the maps.
|
2012-02-19 08:28:43 -05:00
|
|
|
OpenStreetMap data is free for everyone to use. Their tile servers are not.
|
|
|
|
Please take a look at their "Tile Usage Policy":
|
|
|
|
http://wiki.openstreetmap.org/wiki/Tile_usage_policy
|
|
|
|
You can run your own tile server or choose one from their list of public
|
|
|
|
tile servers: http://wiki.openstreetmap.org/wiki/TMS
|
|
|
|
Support the OpenStreetMap community and share the load.
|
|
|
|
|
|
|
|
___ Configuration ___
|
|
|
|
|
2012-04-05 15:23:40 -04:00
|
|
|
If you for any reason prefer to use a configuration file instead
|
|
|
|
of the admin panels, please refer to the Alternative Configuration below.
|
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
Activate the addon from your admin panel.
|
2012-02-19 08:28:43 -05:00
|
|
|
|
2018-01-20 11:01:59 -05:00
|
|
|
You can now add a Tile Server and default zoom level in the addon settings
|
2012-04-04 13:42:13 -04:00
|
|
|
page of your admin panel.
|
2012-02-19 08:28:43 -05:00
|
|
|
|
2012-04-04 13:42:13 -04:00
|
|
|
The Time Server URL points to the tile server you want to use. Use the full URL,
|
2012-02-19 08:28:43 -05:00
|
|
|
with protocol (http/s) and trailing slash. You can configure the default zoom
|
2012-04-04 13:42:13 -04:00
|
|
|
level on the map in the Default Zoom box. 1 will show the whole world and 18 is the highest
|
2012-02-19 08:28:43 -05:00
|
|
|
zoom level available.
|
2012-04-05 15:23:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
___ Alternative Configuration ___
|
|
|
|
|
|
|
|
Open the .htconfig.php file and add "openstreetmap" to the list of activated
|
|
|
|
addons.
|
|
|
|
|
|
|
|
$a->config['system']['addon'] = "openstreetmap, ..."
|
|
|
|
|
|
|
|
You have to add two configuration variables for the addon:
|
|
|
|
|
|
|
|
$a->config['openstreetmap']['tmsserver'] = 'http://www.openstreetmap.org/';
|
|
|
|
$a->config['openstreetmap']['zoom'] = '18';
|
|
|
|
|
|
|
|
The *tmsserver* points to the tile server you want to use. Use the full URL,
|
|
|
|
with protocol (http/s) and trailing slash. You can configure the default zoom
|
|
|
|
level on the map with *zoom*. 1 will show the whole world and 18 is the highest
|
|
|
|
zoom level available.
|