google-maps-markers
markerClusterer on click zoom
There has been an update to the MarkerClusterer source code, allowing much easier access to the click event: google.maps.event.addListener(markerCluster, ‘clusterclick’, function(cluster) { // your code here }); where ‘markerCluster’ ist the MarkerCluster object. Inside the function you may also access cluster.getCenter(); cluster.getMarkers(); cluster.getSize(); I use this to switch to a different map type, as I … Read more
InvalidValueError: not an instance of HTMLInputElement
Your field is TEXTAREA, and from last updates, google maps autocomplete now supports only window.HTMLInputElement (INPUT tag).
Change Google map marker orientation according path direction
One option is to translate your icon to SVG then use the Symbol rotation property to align it with the road (you can do the same with a PNG image by either making a large number of copies of the icon rotated by a degree or two, or by making a custom icon that allows … Read more
Add Marker on Android Google Map via touch or tap
Try using new Google Map API v2. It’s easy to use and you can add a marker on tap like this: map.setOnMapClickListener(new GoogleMap.OnMapClickListener() { @Override public void onMapClick(LatLng point) { allPoints.add(point); map.clear(); map.addMarker(new MarkerOptions().position(point)); } }); or in Kotlin: map.setOnMapClickListener { allPoints.add(it) map.clear() map.addMarker(MarkerOptions().position(it)) } Note that you might want to remember all your added … Read more
How to align the icon of a marker in google map
What You need is to create a MarkerImage object, for example: var markerImage = new google.maps.MarkerImage(‘img/icons/bank_euro.png’, new google.maps.Size(30, 30), new google.maps.Point(0, 0), new google.maps.Point(15, 15)); Where first parameter is an image url, second is image size, third is origin point of image, and fourth is position on the image where marker should point. If your … Read more
Google Maps Api v3, custom Cluster icon
You need to use styles parameter when initializing MarkerClusterer object – the code below shows default styles so if you want to recolour one of the icons just change the relevant url to your image… //set style options for marker clusters (these are the default styles) mcOptions = {styles: [{ height: 53, url: “http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/images/m1.png”, width: … Read more
How to get screen coordinates from marker in google maps v2 android
Yes, use Projection class. More specifically: Get Projection of the map: Projection projection = map.getProjection(); Get location of your marker: LatLng markerLocation = marker.getPosition(); Pass location to the Projection.toScreenLocation() method: Point screenPosition = projection.toScreenLocation(markerLocation); That’s all. Now screenPosition will contain the position of the marker relative to the top-left corner of the whole Map container … Read more