{"version":3,"sources":["map.js"],"names":["initMap","selector_map","$","data_map_x","attr","data_map_y","myLatLng","google","maps","LatLng","map","Map","document","getElementById","center","zoom","styles","zoomControl","mapTypeControl","scaleControl","streetViewControl","rotateControl","fullscreenControl","Marker","position"],"mappings":"AAAA,QAASA,WACL,GAAIC,GAAeC,EAAE,QACjBC,EAAaF,EAAaG,KAAK,cAC/BC,EAAaJ,EAAaG,KAAK,cAC/BE,EAAW,GAAIC,QAAOC,KAAKC,OAAON,EAAYE,GAC9CK,EAAM,GAAIH,QAAOC,KAAKG,IAAIC,SAASC,eAAe,QAClDC,OAAQR,EACRS,KAAM,GACNC,UAEAC,aAAa,EACbC,gBAAgB,EAChBC,cAAc,EACdC,mBAAkB,EAClBC,eAAe,EACfC,mBAAmB,GAEV,IAAIf,QAAOC,KAAKe,QACzBC,SAAUlB,EACVI,IAAKA","file":"map.js","sourcesContent":["function initMap() {\r\n var selector_map = $('#map');\r\n var data_map_x = selector_map.attr('data-map-x');\r\n var data_map_y = selector_map.attr('data-map-y');\r\n var myLatLng = new google.maps.LatLng(data_map_x, data_map_y);\r\n var map = new google.maps.Map(document.getElementById('map'), {\r\n center: myLatLng,\r\n zoom: 12,\r\n styles: [\r\n ],\r\n zoomControl: false,\r\n mapTypeControl: false,\r\n scaleControl: false,\r\n streetViewControl:false,\r\n rotateControl: false,\r\n fullscreenControl: false\r\n });\r\n var marker = new google.maps.Marker({\r\n position: myLatLng,\r\n map: map\r\n });\r\n}"]}