Google Maps obtain a list of places in current map - google-maps-api-3

Is there a way to obtain a list of places in current map? For example when I zoom in to below map, there're 7 places. I want to put an image on top of existing place name.
Or, is it possible to replace all the existing names, e.g. "Dynamo Donuts", with clickable images?
http://oi41.tinypic.com/1zvd8ok.jpg

Yes it is possible. First of all you have to check if there are any places within the area you want. You can accomplish that with places library of google maps.
Once you have the places (location of the places) you can do whatever you want. You can place markers or images, clickable or not.

Related

Custom Google StreetView with markers

I was wondering if you could put a custom StreetView with a marker. I am making a map that has city parks. I want it so if someone clicks on a specific marker, the custom StreetView pops up and shows the panorama. For the custom StreetViews I used Google Views. Is this possible?
Thanks in advance.
Yes, this is possible. Something close to it can be done in two ways.
The easiest option is to load Google maps from the main URL and wait. It will let you build a map or view your custom maps just below the search bar. Google Maps itself lets you create a custom map with markers. This doesn't sound like your desired option, but it is quick to implement. You can even add your own style.
The second is to create your own custom Street View tour, this sounds like your focus. You want the actual panographs to use your markers. This is fairly easy to do, but requires some programming. It is possible on both Google Earth and Google Maps. Check out the Google APIs such as https://developers.google.com/maps/documentation/javascript/reference#StreetViewPanoramaOptions. Options include changing out panographs for your own images, defining arrows including labels, overlays, pop-up boxes, action boxes, and more. Check out some options here: http://hpneo.github.io/gmaps/examples.html

Google Maps Polygons: How do you get the coordinates of predefined paths?

I was given a list of links to predefined Google Map polygons like this one:
https://www.google.com/search?es_sm=91&espv=210&q=laarbeek&bav=on.2,or.r_qf.&bvm=pv.xjs.s.en_US.ClVHbHStgs4.O
If you click the image on the right you will be redirected to the full map view with the shape.
Now I need to create my own map with all these shapes. Is there a way where I could get their coordinates? I've been looking for them on the page but had no luck. I'd rather not do it manually because of course, Google is more accurate.
Any help is greatly appreciated.
Thanks!

Adding overlays to the Google Maps display itself

I'm looking for a way to add images to the Google Map interface itself, not fixed on a point on the geographical map but on the Google Maps "window". Something to display Map Legends on the map itself.
I've been looking through the net but can't seem to find a way to do this. As you can tell I don't really know what this is called also, so that may be the reason why I ca
You have to open infowindow on map and put image in it.
Try with this answer : google maps api v3 - how to display image thumbnails inside bubble?

How to create placemarks manually as in "My Maps"

I have a fully functioning map using the API v3 with markers placed as a result of database searches, and info windows that pop up correctly. So far, so good.
What I would like to do is to allow the user to place a marker on the map manually, i.e by dragging and dropping a placemark in exactly the same way as google "My Maps" uses to build a map or by clicking on the map.
There are several reasons for doing this, but one is that I would like the user to easily identify a centre point of interest so that I can filter searches within a radius of this point.
I would have thought that this option would be useful to others.
Maybe I am using the wrong search terms for this, and the terms "marker" and "placemark" seem to be interchangeable, which doesnt help, but I cannot formulate a search which has even shown that anyone else is trying to do this.
Have you seen this example of the drawing tools, it allows you to add Markers, Polylines and Polygons, you can customize it to just do Markers.
Here is the documentation for the Drawing Manager

How to display area borders in embedded map

When i am searching for some country area in maps on standard web UI it shows me the area borders.
I would like to mark this areas dynamically in embedded map on my website, but i dont know how exactly i have to formulate search query to find if there is some way to achieve this.
I was not found anything about this in reference.
does google offer some API for this in last maps js API?
You need a Polygon-Overlay or a KML-Layer which defines the borders.

Resources