Jump to content

Member Map


Recommended Posts

My map has been working fine, but today :

Google has disabled use of the Maps API for this application. See the Terms of Service for more information: http://www.google.com/help/terms_maps.html.

I was using the V2 key ????

Hiya,

Revisit the API console and double check that everything is correct, Make sure you're using the 'browser' key as detailed here: http://community.invisionpower.com/topic/306966-download-member-map/page-62#entry2368478

Link to comment
  • 2 weeks later...

Is there an option that guests can see custom markers but not the member locations?

Not as such, it's easily achieved with a template edit though.

in mapGoogleJavascript find:

if($count > 0)
{
 foreach ($markers as $marker)
 {
  $md5 = md5($marker['lat'].$marker['lon']);
  $this->mrkrs[$md5][] = $marker;
 }
}

Replace with:

if($count > 0 && $this->memberData['member_id'])
{
 foreach ($markers as $marker)
 {
  $md5 = md5($marker['lat'].$marker['lon']);
  $this->mrkrs[$md5][] = $marker;
 }
}
Link to comment
  • 2 weeks later...

Love this app, was working great until today. When a member goes to add themselves, they get the following error -

There was a Google Maps error: There was an unspecified problem locating the address, please try again.

I verified this with a test account, and came over here to find there was an update. I went ahead and upgraded, but the error is still happening.

Link to comment

Love this app, was working great until today. When a member goes to add themselves, they get the following error -

I verified this with a test account, and came over here to find there was an update. I went ahead and upgraded, but the error is still happening.

Same problem here I'm afraid.

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...