Assigned
Status Update
Comments
kt...@gmail.com <kt...@gmail.com> #2
We did have an API that could access MyMaps. Unfortunately it has been deprecated. Please read the announcement for more information:
http://googlegeodevelopers.blogspot.com/2010/11/maps-data-api-deprecation-announcement.html
I'm going to leave this feature request open, so we can gauge potential interest in such an API.
I'm going to leave this feature request open, so we can gauge potential interest in such an API.
ha...@googlemail.com <ha...@googlemail.com> #3
Maps Pro will have this functionality.
as...@google.com <as...@google.com>
[Deleted User] <[Deleted User]> #7
Yeah it would be good to have api to show layers and centre on shapes etc with my maps as well.
je...@gmail.com <je...@gmail.com> #8
I chra
er...@clicknweb.com <er...@clicknweb.com> #9
I'm particularly interested in displaying locations marked with pins in one of my MyMaps in my iOS app using the Google Maps SDK for iOS.
ek...@google.com <ek...@google.com> #10
me to want to access mymaps on my android and windows apps
ju...@google.com <ju...@google.com> #11
I had wondered why this wasn't available already, was deprecated it seems. I never got around to using a hack, abandoned project instead.
ju...@gmail.com <ju...@gmail.com> #12
[Comment deleted]
[Deleted User] <[Deleted User]> #13
need js api for my maps too!
lo...@gmail.com <lo...@gmail.com> #14
My maps are viewable in the google maps app for iOS but not editable. Would be good if could edit on ios app in conjunction with urcl scheme??
lo...@gmail.com <lo...@gmail.com> #15
would love to have a api for mymaps to programmatically enter data
bj...@edlisten.com <bj...@edlisten.com> #16
Any progress on this matter?
[Deleted User] <[Deleted User]> #17
All I need is a programmatic way of adding a pin and some text to a map for a list of places. Surprised there is no API to do this obvious use case.
ch...@gmail.com <ch...@gmail.com> #18
MyMaps API would be great.
I would use it for Zone management, in My Maps you can easily draw polygons.
I would like to know in which polygon a certain GPS position is.
i.e. I send a request with my coordinates, and MyMaps returns in which of my polygon(s) the point is.
I would use it for Zone management, in My Maps you can easily draw polygons.
I would like to know in which polygon a certain GPS position is.
i.e. I send a request with my coordinates, and MyMaps returns in which of my polygon(s) the point is.
ke...@toptal.com <ke...@toptal.com> #19
This would be an excellent tool for My Maps. I have a site at http://www.mapchannels.com which provides tools to embed My Maps with a range of custom options. However some of the recent changes in the KML generated by My Maps cause problems such as not being able to access the marker images and some place description data. Having an API to provide this data would help a lot and make possible extra features such as editing the My Maps data from a user-created map.
le...@gmail.com <le...@gmail.com> #20
[Comment deleted]
[Deleted User] <[Deleted User]> #21
I'm trying to do something similar, use or embed My Maps with custom options where users/visitors to the website would be able to see a map of already listed properties and to upload a picture of new a property, with the location of the specific property and a short description if any that would be added to the existing map, and if they want to buy the dataset of properties listed in a specific location.
Similar to what I have done in an example using wordpress:https://unusedproperties.wordpress.com/show-map-2/ , but here I have had to use Picassa to upload the pics, which then I'd be able to get a link of the picture to use on My maps. So I want to skip the Picassa intermediary, and create the option for the user/visitor to take a picture with his phone, and upload that picture and location to the website.
Similar to what I have done in an example using wordpress:
st...@udemy.com <st...@udemy.com> #22
I think a programmatic API for Google My Maps would be a very interesting feature.
lu...@gmail.com <lu...@gmail.com> #23
Would love to tap into this. I have way too many saved places. Would like to create a list display, etc.
co...@gmail.com <co...@gmail.com> #24
I consider usability of My Maps and my willingness to put data there on availability of programmatic API
Description
When you use addMenu to update the menus you specify a bare function name. You cannot add any parameters to the function nor can you use an anonymous function.
It'd be much more useful if I could pass in arbitrary information to the function in arguments.
It would be swell if I could do something like:
var sheetsMenuEntries = [ {name: "Overview", functionName: "gotoSheet('Overview')"},
{name: "Details", functionName: "gotoSheet('Details')"}
];
ss.addMenu("Sheets", sheetMenuEntries);
function gotoSheet(n) {
//do stuff to go to the sheet named n
}
I propose extending the anonymous object we're using to configure the menu to allow more attributes, but keeping the familiar name/functionName structure so as not to break existing scripts.
name: Menu text to be displayed (Required) (currently exists)
functionName: string variable containing the name of the function to execute (optional) (currently exists, but is required)
functionCall: string variable containing a call to the function to execute, as if you were going to eval() it. (optional)
functionBody: a function object to be executed when the menu is chosen. (optional)
That way I could do some really sweet stuff like
var procMenuEntries = [ {name: "Simple thing", functionName: "mySimpleFunc"},
{name: "Parameterized thing", functionCall: "myParameterizedFunc('foo', 'bar')"},
{name: "Woohoo Anonymous Functions", functionBody: function(){Browser.msgBox("Hello World");}}},
];
ss.addMenu("Process", procMenuEntries);