Widget:Google Maps: Unterschied zwischen den Versionen

Aus WikiSpeicher
 
(3 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 15: Zeile 16:
width: 100%;
width: 100%;
height: 0;
height: 0;
padding-bottom: 56%;
padding-bottom: 60%;
}
}
.mapContainer>div {
.mapContainer>div {
Zeile 26: Zeile 27:
</style>
</style>
<div id="map" class="mapContainer"></div>
<div id="map" class="mapContainer"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB2VqCGNrS588hUiejVoi-Ycma2U-P4xJI&callback=initMap" async defer></script>
<script>
<script type="text/javascript">
var map;
var map;
function initMap() {
function initMap() {
Zeile 36: Zeile 36:
});
});
var infoWin = new google.maps.InfoWindow();
var createMarker = function(markerLatLng,MarkerTitle,markerIcon,markerLetter,markerPopup) {
var createMarker = function(markerLatLng,MarkerTitle,markerIcon,markerLetter,markerPopup) {
Zeile 47: Zeile 48:
if (markerPopup) {
if (markerPopup) {
marker.addListener('click', function () {
marker.addListener('click', function () {
var infoWin = new google.maps.InfoWindow({content: markerPopup});
infoWin.setContent(markerPopup);
infoWin.open(map,marker);
infoWin.open(map,marker);
//marker.openInfoWindowHtml(markerPopup);
//marker.openInfoWindowHtml(markerPopup);
Zeile 67: Zeile 68:
</script>
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB2VqCGNrS588hUiejVoi-Ycma2U-P4xJI&callback=initMap" async defer></script>
</includeonly>
</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.