Toronto Green P Locations

Data scraper: http://scraperwiki.com/scrapers/greenp_carparks/

Source for this site: https://github.com/adamw523/torontogreenp

This site is not affiliated with Toronto Green P Parking.

Show Green P Locations on maps.google.com

KML source of Toronto Green P Parking Locations: http://bit.ly/greenpTO

After searching for an address on Google Maps, type "http://bit.ly/greenpTO" into the search bar on Google Maps and click "Search Maps".

Add KML Source to Your Android Google Maps App

Scan the Following QR Code or go to http://bit.ly/greenpTO in the browser on your Android Device.

Add KML Source to Your Google Map

    var g_map = new google.maps.Map(document.getElementById("google_map"), g_map_options);
    var kml = new google.maps.KmlLayer("http://torontogreenp.appspot.com/generatefeed.kml");
    kml.setMap(g_map);
  

Add KML Source to Your Microsoft Bing Map

    var b_map = new VEMap("bing_map");
    b_map.LoadMap();
    var shapeLayer = VEShapeLayer(); 
    var veLayerSpec = new VEShapeSourceSpecification(VEDataType.ImportXML, "http://torontogreenp.appspot.com/generatefeed.kml", shapeLayer);
    b_map.ImportShapeLayerData(veLayerSpec);