Widget:Google Maps: Unterschied zwischen den Versionen

Aus ZUM-Unterrichten
KKeine Bearbeitungszusammenfassung
Markierung: 2017-Quelltext-Bearbeitung
KKeine Bearbeitungszusammenfassung
Markierung: 2017-Quelltext-Bearbeitung
 
(6 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 27: Zeile 27:
             var marker=new google.maps.Marker(markerLatLng,{title:MarkerTitle,icon:markerIcon});
             var marker=new google.maps.Marker(markerLatLng,{title:MarkerTitle,icon:markerIcon});
             if (markerPopup) {
             if (markerPopup) {
                 google.maps.Event.addListener(marker, "click", function() {
                 marker.addListener('click', function() {
                     marker.openInfoWindowHtml(markerPopup);
                     marker.openInfoWindowHtml(markerPopup);
                 });
                 });
Zeile 34: Zeile 34:
         }
         }
         <!--{foreach from=$marker item=m}-->
         <!--{foreach from=$marker item=m}-->
             var markerIcon=marker.setIcon('http://maps.google.com/mapfiles/marker.png');
             var markerIcon=new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|FE7569");
             <!--{if isset($m.letter)}-->markerIcon.image="https://www.google.com/mapfiles/marker<!--{$m.letter|escape:'urlpathinfo'}-->.png";<!--{/if}-->
             <!--{if isset($m.letter)}-->markerIcon.image="https://www.google.com/mapfiles/marker<!--{$m.letter|escape:'urlpathinfo'}-->.png";<!--{/if}-->
             <!--{if isset($m.icon)}-->markerIcon.image='<!--{$m.icon|validate:url}-->';<!--{/if}-->
             <!--{if isset($m.icon)}-->markerIcon.image='<!--{$m.icon|validate:url}-->';<!--{/if}-->
Zeile 41: Zeile 41:
             <!--{if isset($m.text)}-->markerPopup='<!--{$m.text|escape:'quotes'}-->';<!--{/if}-->
             <!--{if isset($m.text)}-->markerPopup='<!--{$m.text|escape:'quotes'}-->';<!--{/if}-->
             var marker = new createMarker(markerLatLng,'<!--{$m.title|escape:'quotes'}-->',markerIcon,markerPopup);
             var marker = new createMarker(markerLatLng,'<!--{$m.title|escape:'quotes'}-->',markerIcon,markerPopup);
           
       
         map.addOverlay(marker);
        marker.setMap(map); 
         //map.addOverlay(marker);
         <!--{/foreach}-->
         <!--{/foreach}-->
         <!--{if isset($xml)}-->map.addOverlay(new google.maps.GeoXml('<!--{$xml|escape:'quotes'}-->'));<!--{/if}-->
         <!--{if isset($xml)}-->marker.setMap(new google.maps.GeoXml('<!--{$xml|escape:'quotes'}-->'));<!--{/if}-->
         <!--{if isset($centermarker)}-->map.addOverlay(new google.maps.Marker(center));<!--{/if}-->
         <!--{if isset($centermarker)}-->marker.setMap(new google.maps.Marker(center));<!--{/if}-->
         <!--{if isset($maptypecontrol)}-->map.addControl(new google.maps.MapTypeControl());<!--{/if}-->
          
        <!--{if isset($largemapcontrol)}-->map.addControl(new google.maps.LargeMapControl());<!--{/if}-->
        <!--{if isset($smallmapcontrol)}-->map.addControl(new google.maps.SmallMapControl());<!--{/if}-->
        <!--{if isset($smallzoomcontrol)}-->map.addControl(new google.maps.SmallZoomControl());<!--{/if}-->
        <!--{if isset($scalecontrol)}-->map.addControl(new google.maps.ScaleControl());<!--{/if}-->
        <!--{if isset($overviewmapcontrol)}-->map.addControl(new google.maps.OverviewMapControl());<!--{/if}-->
        <!--{if isset($hierarchicalmaptypecontrol)}-->map.addControl(new google.maps.HierarchicalMapTypeControl());<!--{/if}-->
                 <!--{if isset($maptype)}-->map.setMapType(<!--{if $maptype eq 'satellite'}-->G_SATELLITE_MAP<!--{elseif $maptype eq 'hybrid'}-->G_HYBRID_MAP<!--{else}-->G_NORMAL_MAP<!--{/if}-->);<!--{/if}-->
                 <!--{if isset($maptype)}-->map.setMapType(<!--{if $maptype eq 'satellite'}-->G_SATELLITE_MAP<!--{elseif $maptype eq 'hybrid'}-->G_HYBRID_MAP<!--{else}-->G_NORMAL_MAP<!--{/if}-->);<!--{/if}-->



Aktuelle Version vom 23. Januar 2018, 12:12 Uhr

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

Created by Sergey Chernyshev

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.