First of all, I would like to apologize for being a beginner in Google map API and a non-technical person (sales).
I would like to create a map which have below 3 capabilities: - (I was using some sample programs from the example & trying to combine the 3 functions.) 1. Autocomplete (sort of working) 2. Cluster markers (both item 2 & 3 markers not showing) 3. Tag filter with checkbox
I have tried many times with my best effort by include some "alert" to trace the program, unfortunately with my technically almost zero, I'm not able to resolve my problems. Therefore, I got to seek for expert helps. your help would be very much appreciated.
Cheers PK
-- Functions (createMarker, show, hide & etc)
function createMarker(latLng,name,html,state_code) {
var contentString = html;
var marker = new google.maps.Marker({
position: latLng,
icon: gicons[state_code],
shadow: iconShadow,
map: map,
title: name,
zIndex: Math.round(latLng.lat()*-100000)<<5
});
// === Store the category and name info as a marker properties ===
marker.mycategory = state_code;
marker.myname = name;
gmarkers.push(marker);
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(contentString);
infowindow.open(map,marker);
});
}
function show(state_code) {
for (var i=0; i<gmarkers.length; i++) {
if (gmarkers[i].mycategory == state_code) {
gmarkers[i].setVisible(true);
}
}
// == check the checkbox ==
document.getElementById(state_code+"box").checked = true;
}
function hide(state_code) {
for (var i=0; i<gmarkers.length; i++) {
if (gmarkers[i].mycategory == state_code) {
gmarkers[i].setVisible(false);
}
}
// == clear the checkbox ==
document.getElementById(state_code+"box").checked = false;
// == close the info window, in case its open on a marker that we just hid
infowindow.close();
}
// == a checkbox has been clicked ==
function boxclick(box,state_code) {
if (box.checked) {
show(state_code);
} else {
hide(category);
}
// == rebuild the side bar
makeSidebar();
}
function myclick(i) {
google.maps.event.trigger(gmarkers[i],"click");
}
--- initialize function
function initialize() {
var center = new google.maps.LatLng(3.834466, 108.616508);
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 3,
center: center,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var mapOptions = {
center: new google.maps.LatLng(3.834466, 108.616508),
zoom: 6,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map'),
mapOptions);
var markers = [];
for (var i = 0; i < 875; i++) {
var dataPhoto = data.photos[i];
var latLng = new google.maps.LatLng(dataPhoto.latitude,
dataPhoto.longitude);
var marker = new google.maps.Marker({
position: latLng
});
var state_code = dataPhoto.state_code;
var address = dataPhoto.name;
var name = dataPhoto.name;
var html = "<b>"+name+"<\/b><p>"+address;
var marker = createMarker(latLng,name,html,state_code);
}
show("SG");
hide("PG");
hide("JH");
var markerCluster = new MarkerClusterer(map, markers);
var input = document.getElementById('searchTextField');
var autocomplete = new google.maps.places.Autocomplete(input);
autocomplete.bindTo('bounds', map);
var infowindow = new google.maps.InfoWindow();
var marker = new google.maps.Marker({
map: map
});
google.maps.event.addListener(autocomplete, 'place_changed', function() {
infowindow.close();
var place = autocomplete.getPlace();
if (place.geometry.viewport) {
map.fitBounds(place.geometry.viewport);
} else {
map.setCenter(place.geometry.location);
map.setZoom(17); // Why 17? Because it looks good.
}
var image = new google.maps.MarkerImage(
place.icon,
new google.maps.Size(71, 71),
new google.maps.Point(0, 0),
new google.maps.Point(17, 34),
new google.maps.Size(35, 35));
marker.setIcon(image);
marker.setPosition(place.geometry.location);
var address = '';
if (place.address_components) {
address = [(place.address_components[0] &&
place.address_components[0].short_name || ''),
(place.address_components[1] &&
place.address_components[1].short_name || ''),
(place.address_components[2] &&
place.address_components[2].short_name || '')
].join(' ');
}
infowindow.setContent('<div><strong>' + place.name + '</strong><br>' + address);
infowindow.open(map, marker);
});
// Sets a listener on a radio button to change the filter type on Places
// Autocomplete.
function setupClickListener(id, types) {
var radioButton = document.getElementById(id);
google.maps.event.addDomListener(radioButton, 'click', function() {
autocomplete.setTypes(types);
});
}
setupClickListener('changetype-all', []);
setupClickListener('changetype-establishment', ['establishment']);
setupClickListener('changetype-geocode', ['geocode']);
refreshMap();
}
function clearClusters(e) {
--- sample data data002.json
var data = { "count": 10785236, "photos": [{"state_code": "JH", "latitude": 1.8218726, "longitude": 102.902545, "name": "Batu Pahat River, Johor, Malaysia"} , {"state_code": "JH", "latitude": 2.3333333, "longitude": 102.8666667, "name": "Bukit Kangkar, Johor, Malaysia"} , {"state_code": "PG", "latitude": 5.399238, "longitude": 100.2868139, "name": "Air Itam, Pulau Pinang, Malaysia"} , {"state_code": "SG", "latitude": 3.124693, "longitude": 101.575845, "name": "Ara Damansara, Selangor, Malaysia"} , {"state_code": "TG", "latitude": 4.625682, "longitude": 103.4246549, "name": "Paka, Malaysia, Terengganu, Malaysia"} ]}
showfunction. Try this in the console;for (i=0;i<gmarkers.length;i++) {console.log(gmarkers[i].getVisible());}. It will tell you if any markers get set visible. Are you not getting any error messages? You maybe should consider linking to your project or uploading a JSFiddle, that way people may be able to help better. – wije Jan 20 at 8:36