The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
VBGooglemap Member Edition Details »» | |||||||||||||||||||||||||
I'm proud to announce that the new version is currently available to you all !!! You can now nominate hacks yourself for hacks of the month. There is a link on the right of hacks on top of the files. Function This will display the members of the Bulletin Board based on their lattitude and longitude coordinates on a googlemap. Don't forget to hit install !!!!!!! Please read the guide before asking for support !!!!!!! Feel free to support this mod and make a paypal donation to admin@stonyarc.com INSTALL HOTSPOT EDITION AVAILABLE ON : https://vborg.vbsupport.ru/showthread.php?t=114149 Detailed installation instructions and screenshots in the included pdf file. Current Features NOTE: VBGooglemap 3.0.0 contains the vulnerability fix. Please upgrade immediately. Version 3.0.0. also contains all features from 2.5.X As always you use modifications at your own risk. VBGooglemap Member Edition 2.5.1 brings you a lot of new features. It?s vital that you uninstall any previous version before upgrading/installing version 2.5.1. Upgrading from version 2.5.0 is easier. Instruction are available in the guide. As the uninstall function will not remove your googlemap data in the database but only the templates and files you can safely remove an older version. As a precaution you should always take a backup. This should be done on each major change you make to your bulletin board. IF YOU ARE RUNNING VERSION 1.0.3, 2.0.X AND YOU CHANGED TEXT DIRECTLY IN THE TEMPLATES YOU NEED TO SAVE YOUR CHANGES AS VERSION 2.5.0 REQUIRES YOU TO UINSTALL PREVIOUS VERSIONS. This has taken quite some work and still will take a lot more. Please give credit where credit is due. You cannot remove any notice without prior written permission. Changes in this version SEE FIRST POST FOR FULL ROADMAP AND HISTORY Planned Features - TBD Volume warning high volume of users may slow down the load. Currently a load counter is included. Languages Thanks to Wachtmeister there is a German translation available to you all. Feel free to use it. The translation will be updated on each new version. Special - Read the attached PDF for more information. The pdf is also included in the zip file. - You'll need a googlemap key for your domain. Get your own key for your domain view http://www.google.com/apis/maps/signup.html for more information. A googlemap key is only valid for a specific domain. You'll need a specific google account to create one. All is explained on the googlemap link indicated above. - Set the file permissions on the marker.xml file to 777 - The googlemap script can handle non-registered users. They will only see the main map and won't be able to enter information. This is reserved for logged in users (detected automatically) - usergroup permissions are available in the backend - To change location just drag the map while holding the left mouse key or by using the zoom and key functions on the left - First time loading of the map may take a few seconds longer because of Google API hosting Special Xbox Live version http://www.xboxlivenation.com/community/gamermap.php Credits This has taken quite some work and still will take a lot more. Please give credit where credit is due. You cannot remove any notice without prior written permission. Instructions are included in the pdf file (vbgooglemap2.5.0_guide.pdf) Special credits to Google, Pyg for the javascript tips. FAQ The FAQ is included in the pdf file. INSTALL Feel free to support this mod and make a paypal donation to admin@stonyarc.com (c) 2007 Stonyarc Show Your Support
|
Comments |
#552
|
|||
|
|||
Quote:
|
#553
|
||||
|
||||
I would like my users to fill in their location by hand and not by searching on the map. Is it possible to fill in the coordinates or is there no other way?
Best would be if my members could fill in their location in their profile Thanks for the good work!! *clicks install* |
#554
|
|||
|
|||
Quote:
So normally it must be a cookie-problem? Any suggestions? Greetz Johon |
#555
|
|||
|
|||
Thanks for writing this plugin - very cool. It didn't work on my board at first; found out it's the way you're setting the window.onload event. Our board already has an onload event, and our onload overrode your onload. Best way to get around this is to attach an event instead of just setting onload like that. I changed anywhere you set the window.onload handler to this and it worked great.
Code:
if(window.addEventListener) { window.addEventListener("load", Load_Map, false); } else if(window.attachEvent) { window.attachEvent("onload", Load_Map); } |
#556
|
|||
|
|||
Been waiting for somebody to add this, but I'm at the point where I needed it so I wrote it. Nothing fancy, but it works. I can't support this, but wanted to share. Here's the changes I made:
in VBGooglemap.php I added this: PHP Code:
PHP Code:
PHP Code:
PHP Code:
Code:
function lookupZip(zip) { var q = "zip="+zip; doLookup(q); } function lookupCity(city) { var q = "city="+city; doLookup(q); } function doLookup(q) { var t = getTransport(); t.open("GET","?do=geocodelookup&"+q, false); t.send(""); if(t.responseText) { var coords = t.responseText.split('|'); if(!coords||coords.length!=2) return; map.centerAndZoom(new GPoint(coords[0], coords[1]), 6); } else { alert("Not Found or Invalid Lookup!"); } } function getTransport() { if(window.XMLHttpRequest || window.ActiveXObject) { try{ req = new XMLHttpRequest(); } catch(e) { try{ req = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Msxml4.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { return false; } } } } return req; } } HTML Code:
<table class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" width="100%" border="0" align="center"> <tr> <td class="tcat">$vbphrase[googlemap_edit]</td> </tr> <tr> <td class="alt1"><div class="smallfont"> $vbphrase[googlemap_smallhelp] </div></td> </tr> <tr> <td class="thead">Zip Code Lookup</td> </tr> <tr> <td class="alt2"><form onsubmit="this.zipsub.onclick();return false;"><input type="text" id="gmapZipLookup"/><input name="zipsub" type="submit" value="lookup" onclick="lookupZip(document.getElementById('gmapZipLookup').value); return false;"/></form></td> </tr> <tr> <td class="thead">City Lookup <div class="smallfont"> <font class="small">city,state,US (ie. Marietta,GA,US) or city,country (London,UK)</font> </div> </td> </tr> <tr> <td class="alt2"><form onsubmit="this.citysub.onclick();return false;"><input type="text" id="gmapCityLookup"/><input type="submit" value="lookup" name="citysub" onclick="lookupCity(document.getElementById('gmapCityLookup').value); return false;"/></form></td> </tr> </table> HTML Code:
<tr> <td class="tcat">$vbphrase[googlemap_edit]</td> </tr> <tr> <td class="alt1"><div class="smallfont"> $vbphrase[googlemap_smallhelp] </div></td> </tr> |
#557
|
||||
|
||||
Quote:
Clancy |
#558
|
|||
|
|||
Man, this is a great hack, it would really be nice to get at least some kind of reply from stonyarc that he has abandoned this project or is aware of the IE issue and working on it, or that the people with the problem are themselves at fault and it works fine..
I posted this "balloon not popping up in IE problem several weeks ago and have patiently been waiting for something......anything. I have not send stonyarc a pm becuase I feel lucky to have any of the hacks on these forums and don't want to take someones time when they are doing somethng for free I figured he would get around to it, .... But this is just such a damn great hack........ and to login here every day and read this thread looking for any news from stonyarc.... and see that he is visiting the forum on a regular basis and not at least acknowledging the posts is frustrating. This is my favorite hack of all time.... I have even tried to get all my users to switch to firefox so they can use it! LOL Stonyarc..... I beg you.... please please pretty please..... let us know whats the scoop. I am more than willing to donate if your time is the issue here. But somehow, I doubt that is the issue... I am sorry if I sound like a little whining kid here. I AM aware that it is my priveledge to download your hack, and not my right to have it. You were VERY generous to share it on this board... it's just such a great hack, I feel likea kid in a candy store with his hands tied behind his back and tape on his mouth LOL.... Lance |
#559
|
|||
|
|||
Quote:
I agree AWESOME hack. I keep checking back with nothing new. Im waiting on the 1.4 version as well for the event and hot spots to display. But with no luck. |
#560
|
|||
|
|||
Thanks. Already clicked install.
|
#561
|
|||
|
|||
Help!
When I look at this picture from the description: I see 2 buttons on the top left of the map - Show map and Your entry. I don't see either on my forum - any help would be appreciated! http://lets-yada-yada-yada.com/VBGooglemap.php **edited to add that NO buttons show up in firefox and only red x's show up in IE |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|