Not displaying map within modal screen
Hello,
I cant seem to get my google map to display in my modal. The code is as follows. Does anyone see anything.
Thank You
- var mapOptions = {
- zoom: 4,
- center: centered,
- mapTypeId: google.maps.MapTypeId.ROADMAP
- };
- var map = new google.maps.Map(document.getElementById('maparea'), mapOptions;
- var marker = new google.maps.Marker({
- position: loc,
- map: map,
- title: $json.PDMOVE[x].SCNAME
- });
- google.maps.event.addListener(marker, 'click', function () {
- infowindow.open(map, marker);
- });
- });
- $("#maparea").dialog({
- autoOpen:true,
- modal: false,
- title:'Empties',
- height: 550,
- width: 700,
- buttons: {
- Close: function() {
- $( this ).dialog( "close" );
- }
- }
- });