map provider changes
This commit is contained in:
parent
8016bedc57
commit
5a10e4f3d7
|
|
@ -198,7 +198,7 @@ If you do changes in the js library (jslib directory) you need to execute build.
|
||||||
#### Adapt the website (htdocs)
|
#### Adapt the website (htdocs)
|
||||||
For setting up a copy on your local machine for development and testing purposes you do not need to do anything, but for any other pupose I really recommend you to adapt the UI.
|
For setting up a copy on your local machine for development and testing purposes you do not need to do anything, but for any other pupose I really recommend you to adapt the UI.
|
||||||
|
|
||||||
First thing to do is probably to add your map api keys, look for the string "<insert map key here>" in the file "index.php". Note that the map providers used in the demo website may not be suitable if you plan to have a public website (read their terms of use).
|
First thing to do is probably to select which map provider to use, look for stuff related to map provider in "index.php". Note that the map providers used in the demo website may not be suitable if you plan to have a public website (read their terms of use).
|
||||||
|
|
||||||
If you make no changes, at least add contact information to yourself, I do not want to receive questions regarding your website.
|
If you make no changes, at least add contact information to yourself, I do not want to receive questions regarding your website.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,8 @@ owner_name="Unknown"
|
||||||
owner_email="no@name.com"
|
owner_email="no@name.com"
|
||||||
;maptiler_key="<insert map key here if you want to activate maptiler>"
|
;maptiler_key="<insert map key here if you want to activate maptiler>"
|
||||||
;google_key="<insert google key here if you want to activate google maps>"
|
;google_key="<insert google key here if you want to activate google maps>"
|
||||||
|
;here_app_id="<insert HERE app id if you want to use HERE as map provider>"
|
||||||
|
;here_app_code="<insert HERE app code if you want to use HERE as map provider>"
|
||||||
|
|
||||||
[database]
|
[database]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,8 +37,12 @@ $REQUEST_PROTOCOL = $isSecure ? 'https' : 'http';
|
||||||
<!-- Map api javascripts and related dependencies -->
|
<!-- Map api javascripts and related dependencies -->
|
||||||
<?php $mapapi = $_GET['mapapi'] ?? 'leaflet'; ?>
|
<?php $mapapi = $_GET['mapapi'] ?? 'leaflet'; ?>
|
||||||
<?php if ($mapapi == 'google') : ?>
|
<?php if ($mapapi == 'google') : ?>
|
||||||
<!-- <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?libraries=visualization,geometry"></script> -->
|
<?php if (getWebsiteConfig('google_key') != null) : ?>
|
||||||
<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=<?php echo getWebsiteConfig('google_key'); ?>&libraries=visualization,geometry"></script>
|
<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=<?php echo getWebsiteConfig('google_key'); ?>&libraries=visualization,geometry"></script>
|
||||||
|
<?php else : ?>
|
||||||
|
<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?libraries=visualization,geometry"></script>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/OverlappingMarkerSpiderfier/1.0.3/oms.min.js" integrity="sha512-/3oZy+rGpR6XGen3u37AEGv+inHpohYcJupz421+PcvNWHq2ujx0s1QcVYEiSHVt/SkHPHOlMFn5WDBb/YbE+g==" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/OverlappingMarkerSpiderfier/1.0.3/oms.min.js" integrity="sha512-/3oZy+rGpR6XGen3u37AEGv+inHpohYcJupz421+PcvNWHq2ujx0s1QcVYEiSHVt/SkHPHOlMFn5WDBb/YbE+g==" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<?php elseif ($mapapi == 'leaflet' || $mapapi == 'leaflet-vector'): ?>
|
<?php elseif ($mapapi == 'leaflet' || $mapapi == 'leaflet-vector'): ?>
|
||||||
|
|
@ -128,10 +132,8 @@ $REQUEST_PROTOCOL = $isSecure ? 'https' : 'http';
|
||||||
// https://wiki.openstreetmap.org/wiki/Tile_servers
|
// https://wiki.openstreetmap.org/wiki/Tile_servers
|
||||||
|
|
||||||
// Many providers require a map api key or similar, the following is an example for HERE
|
// Many providers require a map api key or similar, the following is an example for HERE
|
||||||
/*
|
L.TileLayer.Provider.providers['HERE'].options['app_id'] = '<?php echo getWebsiteConfig('here_app_id'); ?>';
|
||||||
L.TileLayer.Provider.providers['HERE'].options['app_id'] = '<insert app id here>';
|
L.TileLayer.Provider.providers['HERE'].options['app_code'] = '<?php echo getWebsiteConfig('here_app_code'); ?>';
|
||||||
L.TileLayer.Provider.providers['HERE'].options['app_code'] = '<insert map key here>';
|
|
||||||
*/
|
|
||||||
|
|
||||||
options['supportedMapTypes'] = {};
|
options['supportedMapTypes'] = {};
|
||||||
|
|
||||||
|
|
@ -142,13 +144,11 @@ $REQUEST_PROTOCOL = $isSecure ? 'https' : 'http';
|
||||||
//options['supportedMapTypes']['roadmap'] = 'HERE.normalDay';
|
//options['supportedMapTypes']['roadmap'] = 'HERE.normalDay';
|
||||||
//options['supportedMapTypes']['roadmap'] = 'HERE.reducedDay';
|
//options['supportedMapTypes']['roadmap'] = 'HERE.reducedDay';
|
||||||
|
|
||||||
|
|
||||||
options['supportedMapTypes']['terrain'] = 'OpenTopoMap';
|
options['supportedMapTypes']['terrain'] = 'OpenTopoMap';
|
||||||
//options['supportedMapTypes']['terrain'] = 'Stamen.Terrain';
|
//options['supportedMapTypes']['terrain'] = 'Stamen.Terrain';
|
||||||
//options['supportedMapTypes']['terrain'] = 'HERE.terrainDay';
|
//options['supportedMapTypes']['terrain'] = 'HERE.terrainDay';
|
||||||
|
|
||||||
// Remove the google-maps-if-statement below if the satellite option should be used for Leaflet
|
options['supportedMapTypes']['satellite'] = 'HERE.satelliteDay';
|
||||||
//options['supportedMapTypes']['satellite'] = 'HERE.satelliteDay';
|
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|
@ -237,10 +237,9 @@ $REQUEST_PROTOCOL = $isSecure ? 'https' : 'http';
|
||||||
<div class="dropdown-content" id="tdTopnavMapType">
|
<div class="dropdown-content" id="tdTopnavMapType">
|
||||||
<a href="javascript:void(0);" onclick="trackdirect.setMapType('roadmap'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox dropdown-content-checkbox-active">Roadmap</a>
|
<a href="javascript:void(0);" onclick="trackdirect.setMapType('roadmap'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox dropdown-content-checkbox-active">Roadmap</a>
|
||||||
<a href="javascript:void(0);" onclick="trackdirect.setMapType('terrain'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox">Terrain/Outdoors</a>
|
<a href="javascript:void(0);" onclick="trackdirect.setMapType('terrain'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox">Terrain/Outdoors</a>
|
||||||
<?php if ($mapapi == 'google') : ?>
|
<?php if ($mapapi == 'google' || getWebsiteConfig('here_app_code') != null) : ?>
|
||||||
<a href="javascript:void(0);" onclick="trackdirect.setMapType('satellite'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox">Satellite</a>
|
<a href="javascript:void(0);" onclick="trackdirect.setMapType('satellite'); $('#tdTopnavMapType>a').removeClass('dropdown-content-checkbox-active'); $(this).addClass('dropdown-content-checkbox-active');" class="dropdown-content-checkbox">Satellite</a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue