[ABD] Google User Map

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
User avatar
spy2000
Registered User
Posts: 14
Joined: Fri Sep 14, 2007 7:34 am

Re: [BETA] Google User Map

Post by spy2000 »

IE 7

Thanks
User avatar
RyoBerlin
Registered User
Posts: 40
Joined: Thu Sep 20, 2007 10:10 pm
Location: Germany, Berlin

Re: [BETA] Google User Map

Post by RyoBerlin »

the map dosnt wirk with IE7 @ my page! :(

i get just a colored panel thats all...
jcc264
Registered User
Posts: 46
Joined: Sun Dec 17, 2006 3:29 am
Location: State College, PA
Contact:

Re: [BETA] Google User Map

Post by jcc264 »

RyoBerlin wrote:the map dosnt wirk with IE7 @ my page! :(

i get just a colored panel thats all...
you need to get your google site key
Johnny C
http://www.theworstwebsiteever.org

What is the definition of an engineer?
Someone who solves a problem you didn't know you had, in a way you don't understand.
modbo
Registered User
Posts: 45
Joined: Wed Jan 12, 2005 10:26 am

Re: [BETA] Google User Map

Post by modbo »

With Beta 3 it works now for me.

Before map only in Firefpx not in IE7.
User avatar
RyoBerlin
Registered User
Posts: 40
Joined: Thu Sep 20, 2007 10:10 pm
Location: Germany, Berlin

Re: [BETA] Google User Map

Post by RyoBerlin »

jcc264 wrote:you need to get your google site key
what? i need a google site key?
i have a API Key.. map wirks for FF but not IE ...
----------
Ok with Beta 3 Works now :) Thx!
------------------

a Feauture Request:

A Speciel Profile Field where the User can Enter his Street/Adress because...
i live in Berlin City... and the most users will enter "Berlin" so that every user will be displayed on the same place at the card thats impossible ;)

And the user should have the choice "Show my adress to others yes/no" so that finally

Living place: Berlin (example)
UserMap: SomeStreet, 10000 Berlin
Show UserMap Datas? Y/N
Displayed in Map only "Living Place" but the street (Full UserMap Datas) are secret

Problem wis LivingPlace is also that a long adress will be shown in the profile @ each post and that looks ugly ;)
User avatar
Dr.Death
Registered User
Posts: 400
Joined: Fri Apr 25, 2003 10:04 am
Location: Germany
Contact:

Re: [BETA] Google User Map

Post by Dr.Death »

Enter in the location field: Berlin your-street 10
Doc.
Wauziweb
Registered User
Posts: 37
Joined: Tue Mar 20, 2007 8:14 am
Location: DE
Contact:

Re: [BETA] Google User Map

Post by Wauziweb »

I'm still back on BETA 2!
BETA 3 comes with the "curl-problem" and with the quick- fix the map is not shown because the scale...?!

_____________________
http://forum.mini-aussies.com
live-board: http://forum.mini-aussies.com/
mods: ajax shoutbox / visitors today / upcoming birthdays / recent topics / tracker / user map / imageshack / welcome pm
User avatar
RyoBerlin
Registered User
Posts: 40
Joined: Thu Sep 20, 2007 10:10 pm
Location: Germany, Berlin

Re: [BETA] Google User Map

Post by RyoBerlin »

dr.death wrote:Enter in the location field: Berlin your-street 10
öhm you mean me?

i sayed this is not what i want ;) i mean.. what others want.. because everybody c the streetname in the profile info under his nickname in the forum ;)

i self used it with "Berlin, Street" but the most users are scared ... i think that they believe they are getting visitors lol

Btw. or what about a funktion if more users @ the same place (sometimes... some users lives in the same house.. same street.. same number...) that the card will be possible to display not

"Username"
-------------
"sameLocation"

but
"Username1, Username 2, Username3"
----------------------------------------------
"sameLocation"
jcc264
Registered User
Posts: 46
Joined: Sun Dec 17, 2006 3:29 am
Location: State College, PA
Contact:

Re: [BETA] Google User Map

Post by jcc264 »

the current live demo does this

"Username1, Username 2, Username3"
----------------------------------------------
"sameLocation"
Johnny C
http://www.theworstwebsiteever.org

What is the definition of an engineer?
Someone who solves a problem you didn't know you had, in a way you don't understand.
User avatar
RyoBerlin
Registered User
Posts: 40
Joined: Thu Sep 20, 2007 10:10 pm
Location: Germany, Berlin

Re: [BETA] Google User Map

Post by RyoBerlin »

jcc264 wrote:the current live demo does this
that means?
that the next beta will have it?

perfect! :)
jcc264
Registered User
Posts: 46
Joined: Sun Dec 17, 2006 3:29 am
Location: State College, PA
Contact:

Re: [RC] Google User Map

Post by jcc264 »

Edited first post RC1 is out
Johnny C
http://www.theworstwebsiteever.org

What is the definition of an engineer?
Someone who solves a problem you didn't know you had, in a way you don't understand.
User avatar
RyoBerlin
Registered User
Posts: 40
Joined: Thu Sep 20, 2007 10:10 pm
Location: Germany, Berlin

Re: [RC] Google User Map

Post by RyoBerlin »

The Manual has no version info about RC and chances betwee Beta 3 and RC1 ;)

But, works :)
Enno
Registered User
Posts: 3
Joined: Sun Jul 29, 2007 12:01 am

Re: [RC] Google User Map

Post by Enno »

Hello,

you may be interested in including the following fix to prevent page scrolling while zooming the map with the mouse wheel.

Instructions are for prosilver template only, i haven't looked on subsilver, but it should be very similar.

Open user_map.html.
Find:

Code: Select all

function doLoad() {
Add before, in a new line:

Code: Select all

function wheelevent(e)
{
	if (!e)
	{
		e = window.event
	}
	if (e.preventDefault)
	{
		e.preventDefault()
	}
	e.returnValue = false;
}
Find:

Code: Select all

map.addControl(new GMapTypeControl());
Add after, in a new line:

Code: Select all

///prevent page scroll
GEvent.addDomListener(map.getContainer(), "DOMMouseScroll", wheelevent);
map.getContainer().onmousewheel = wheelevent; 
This fix is based on the example http://esa.ilmari.googlepages.com/scrollzoom.htm, i only adopted it for this phpbb3 mod.

Regards,
Enno
jcc264
Registered User
Posts: 46
Joined: Sun Dec 17, 2006 3:29 am
Location: State College, PA
Contact:

Re: [RC] Google User Map

Post by jcc264 »

Added to the live demo will be in the RC2 release
Johnny C
http://www.theworstwebsiteever.org

What is the definition of an engineer?
Someone who solves a problem you didn't know you had, in a way you don't understand.
Dace
Registered User
Posts: 20
Joined: Sat Nov 27, 2004 2:29 pm

Re: [RC] Google User Map

Post by Dace »

hi

have just install RC version on my RC5 board.. i have about 8000 members and when i run user_map.php.. nothing.... it load the page but i have a general error (mysql server away...)
Locked

Return to “[3.0.x] Abandoned MODs”