var map=null;
var initplace;

StartOnLoad(function() {
   map=new myMap($('idMap'),47.05,19.2156535,7); //47.1749211
   map.Resize();
   map.setCenter(47.05,19.2156535);
   window.onresize=map.Resize.bind(map);
   if (initplace!=null) map.showAddress(initplace);
});



//Egy LonLatBound-ot rajzol ki
function drawBound(map,b,color) {
    if (color==null) color="#00FF00";
    ne=b.getNorthEast();
    sw=b.getSouthWest();
    var Coords = [
        new google.maps.LatLng(ne.lat(), ne.lng()),
        new google.maps.LatLng(sw.lat(), ne.lng()),
        new google.maps.LatLng(sw.lat(), sw.lng()),
        new google.maps.LatLng(ne.lat(), sw.lng()),
        new google.maps.LatLng(ne.lat(), ne.lng())
    ];

    rect = new google.maps.Polygon({
      paths: Coords,
      strokeColor: "#FF0000",
      strokeOpacity: 0.8,
      strokeWeight: 2,
      fillColor: color,
      fillOpacity: 0.35
    });
    map.addOverlay(rect);
}






























