Widget:Google Maps: Unterschied zwischen den Versionen

Aus WikiSpeicher
 
(19 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 3: Zeile 3:


Created by [https://www.mediawikiwidgets.org/User:Sergey_Chernyshev Sergey Chernyshev]
Created by [https://www.mediawikiwidgets.org/User:Sergey_Chernyshev Sergey Chernyshev]
Modified by [https://vol-2.com Rolf Fleischmann]


== Using this widget ==
== Using this widget ==
Zeile 9: Zeile 10:
== Copy to your site ==
== Copy to your site ==
To use this widget on your site, just install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and copy the [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki as page '''{{FULLPAGENAME}}'''.
To use this widget on your site, just install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and copy the [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki as page '''{{FULLPAGENAME}}'''.
</noinclude><includeonly><!--{if not isset($static)}--><!--{counter name="mapDivID" assign="mapDivID"}-->
</noinclude><includeonly>
<div id="map"></div>
<style>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB2VqCGNrS588hUiejVoi-Ycma2U-P4xJI&callback=initMap" async defer></script>
.mapContainer {
<script type="text/javascript">
position: relative;
width: 100%;
height: 0;
padding-bottom: 60%;
}
.mapContainer>div {
position: absolute;
left:0;
top:0;
width: 100%;
height: 100%;
}
</style>
<div id="map" class="mapContainer"></div>
<script>
var map;
var map;
function initMap() {
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: '<!--{$lat|escape:'quotes'}-->', lng: '<!--{$lng|escape:'quotes'}-->'},
center: {lat: <!--{$lat|escape:'quotes'}-->, lng: <!--{$lng|escape:'quotes'}-->},
zoom: '<!--{$zoom|escape:'quotes'|default:16}-->'
zoom: <!--{$zoom|escape:'quotes'|default:16}-->,
mapTypeId: 'satellite'
});
});
var infoWin = new google.maps.InfoWindow();
var createMarker = function(markerLatLng,MarkerTitle,markerIcon,markerLetter,markerPopup) {
var marker=new google.maps.Marker({
position: markerLatLng,
map:map,
title:MarkerTitle,
icon: markerIcon,
label: markerLetter
});
if (markerPopup) {
marker.addListener('click', function () {
infoWin.setContent(markerPopup);
infoWin.open(map,marker);
//marker.openInfoWindowHtml(markerPopup);
});
}
return marker;
}
<!--{foreach from=$marker item=m}-->
var markerIcon='';
<!--{if isset($m.icon)}-->markerIcon='<!--{$m.icon|validate:url}-->';<!--{/if}-->
var markerLetter = '';
<!--{if isset($m.letter)}-->markerLetter='<!--{$m.letter|escape:'quotes'}-->';<!--{/if}-->
var markerLatLng = new google.maps.LatLng('<!--{$m.lat|escape:'quotes'}-->', '<!--{$m.lng|escape:'quotes'}-->');
var markerPopup="";
<!--{if isset($m.text)}-->markerPopup='<!--{$m.text|escape:'quotes'}-->';<!--{/if}-->
var marker = new createMarker(markerLatLng,'<!--{$m.title|escape:'quotes'}-->',markerIcon,markerLetter,markerPopup);
<!--{/foreach}-->
}
}
</script>
</script>
<!--{if not isset($static)}--></div><!--{/if}--></includeonly>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB2VqCGNrS588hUiejVoi-Ycma2U-P4xJI&callback=initMap" async defer></script>
</includeonly>

Aktuelle Version vom 29. August 2018, 20:09 Uhr

This widget allows you to add Google Maps widget to your wiki page.

Created by Sergey Chernyshev Modified by Rolf Fleischmann

Using this widget

For information on how to use this widget, see widget description page on MediaWikiWidgets.org.

Copy to your site

To use this widget on your site, just install MediaWiki Widgets extension and copy the full source code of this page to your wiki as page Widget:Google Maps.