Frisbee teams in Belgium

An overview of where frisbee teams in Belgium play (work in progress).

by petermorlion

HTML

<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<div id="map_canvas"></div>

CSS

#map_canvas {
    width: 450px;
    height: 350px;
    background-color: #CCC;
}

JavaScript

$(function() {
    var mapOptions = {
      center: new google.maps.LatLng(51.045332, 3.690692),
      zoom: 14,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
       
    var map = new google.maps.Map(
        $('#map_canvas')[0],
        mapOptions
    );
    
    var gentle = new google.maps.Marker({
        position: new google.maps.LatLng(51.045332, 3.690692),
        map: map,
        icon: {
            url: 'http://gentlesite.be/drupal/sites/default/files/logo_0.png',
            scaledSize: new google.maps.Size(40, 40)
        }
    });
    
    var schijnwerpers = new google.maps.Marker({
        position: new google.maps.LatLng(51.241952, 4.397081),
        map: map,
        icon: {
            url: 'http://www.schijnwerpers.be/wp-content/uploads/2012/10/logo_schijn1.png',
            scaledSize: new google.maps.Size(40, 40)
        }
    });
    
    var jetset = new google.maps.Marker({
        position: new google.maps.LatLng(50.8833, 4.7000),
        map: map,
        icon: {
            url: 'http://1.bp.blogspot.com/--da1HAv4bKI/UoSbpPa0hmI/AAAAAAAAARs/i4Nhb8Ue6nk/s1600/Jetset+-+Ultimate+Sapientia.jpg',
            scaledSize: new google.maps.Size(40, 40)
        }
    });
    
    var slijpschijven = new google.maps.Marker({
        position: new google.maps.LatLng(51.087349, 3.448371),
        map: map,
        icon: {
            url: 'http://3.bp.blogspot.com/-mjoU20pKYTE/UoSbbCZ75qI/AAAAAAAAAQ8/T8_WJ1HfWMY/s200/logo+sl.jpg',
            scaledSize: new google.maps.Size(40, 40)
        }
    });
    
    var diabolicheaven = new google.maps.Marker({
        position: new google.maps.LatLng(50.948539, 5.360701),
        map: map,
        icon: {
            url: 'http://www.diabolicheaven.be/wp-content/uploads/2013/10/diaboliclogo.png',
            scaledSize: new google.maps.Size(40, 40)
        }
    });
    
    var vosreinaert = new google.maps.Marker({
        position: new google.maps.LatLng(51.155884, 4.154441),
        map: map,
...