On a Wordpress page, I am using Javascript/Google Maps API to apply a Fusion Table layer to a google map. Here is my code:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true">
</script>
<script>
var map, layer;
function initialize() {
var chicago = new google.maps.LatLng(41.850033, -87.6500523);
map = new google.maps.Map(document.getElementById('map-canvas'), {
center: chicago,
zoom: 11
});
layer = new google.maps.FusionTablesLayer({
query: {
select: '\'Geocodable address\'',
from: '1x265dMvUClEGEVHD_3VRBvSRXk-mbs4jcO2xy29K'
}
});
layer.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div style="width:500px; height:500px" id="map-canvas"></div>
I have 2 issues:
The buttons look fuzzy, pixelated and strange.
The markers from my fusion table are not showing up. However, if you click around on the map, you can still see the data points that I made on my fusion table map.
The theme that I am using was created by a developer at my company.
Any ideas on how to fix these issues?