Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VBGooglemap Member Edition Details »»
VBGooglemap Member Edition
Version: 3.0.1., by stonyarc stonyarc is offline
Developer Last Online: Aug 2013 Show Printable Version Email this Page

Version: 3.5.8 Rating:
Released: 11-01-2005 Last Update: 08-20-2007 Installs: 827
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.


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

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #972  
Old 04-23-2006, 10:17 AM
Dez_U Dez_U is offline
 
Join Date: Nov 2001
Location: Fife, Scotland
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a problem viewing wit IE, see my link.

I am sure its something I have done as it looks fine in firefox but any help would be great
http://www.refrigeration-engineer.co...bgooglemap.php
Reply With Quote
  #973  
Old 04-23-2006, 11:31 AM
stonyarc stonyarc is offline
 
Join Date: Aug 2005
Location: Leuven (Belgium)
Posts: 930
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dez_U
I have a problem viewing wit IE, see my link.

I am sure its something I have done as it looks fine in firefox but any help would be great
http://www.refrigeration-engineer.co...bgooglemap.php
The DIV where the googlemap loads is called "map".

You can get this effect if you have an image map loading on your site with the same name.

Code:
<map name="Map">
  <area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map">

That line is the cause

To fix

Code:
<map name="Map1">
  <area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map1">
This should help you out
Reply With Quote
  #974  
Old 04-23-2006, 11:42 AM
OrangeFlea OrangeFlea is offline
 
Join Date: Aug 2004
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by stonyarc
You can build your style around it.

The version 2.0.2 stores the markers locally so you can even create your own markers as long as you respect the filenames.
So I can replace the default map with a custom made map? Because that's exactly what I saw in that other user's board.
Reply With Quote
  #975  
Old 04-23-2006, 12:35 PM
Dez_U Dez_U is offline
 
Join Date: Nov 2001
Location: Fife, Scotland
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by stonyarc
The DIV where the googlemap loads is called "map".

You can get this effect if you have an image map loading on your site with the same name.

Code:
<map name="Map">
  <area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map">

That line is the cause

To fix

Code:
<map name="Map1">
  <area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map1">
This should help you out
sorry, where am I looking for the above?

Thanks
Reply With Quote
  #976  
Old 04-23-2006, 01:48 PM
stonyarc stonyarc is offline
 
Join Date: Aug 2005
Location: Leuven (Belgium)
Posts: 930
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In you main template probably FORUMHOME
Reply With Quote
  #977  
Old 04-23-2006, 01:50 PM
stonyarc stonyarc is offline
 
Join Date: Aug 2005
Location: Leuven (Belgium)
Posts: 930
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by OrangeFlea
So I can replace the default map with a custom made map? Because that's exactly what I saw in that other user's board.
You can change the default view standard in code but additionally the vbgooglemap also lets you create your own marker images if you want (/images/googlemap)

The core map remains the same and is of course google technology.
Reply With Quote
  #978  
Old 04-23-2006, 02:22 PM
Dez_U Dez_U is offline
 
Join Date: Nov 2001
Location: Fife, Scotland
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

maybe this is the problem, I have looked in FORUMHOME and all the googlemap templates and I canny see the above code you speak of ..... mmmm, any help please?
Reply With Quote
  #979  
Old 04-23-2006, 02:43 PM
sinucello sinucello is offline
 
Join Date: Apr 2006
Location: dutch-german border
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi stonyarc,

great extension, my forum-members love it ;-).

One remark:
a lot of the users try to enter their coordinates directly and use the wrong strings with the degree chars like: 47.6833 / 47° 40' 60

Then I get error-mails:

Database error in vBulletin 3.5.4:

Invalid SQL:
INSERT INTO googlemap (userid,username,usergroupid,text_map,lat_map,lng_ map) VALUES ('1120','testuser','2','Testuser','47.6833 / 47° 40' 60'' ...','9.83333 / 9° 49' 60''');

Would it be possible to check the form for degree chars with JavaScript when the forum is submitted?

I also need a filter-feature that would allow the user to show only the markers of a certain usergroup. Is that possible? I`d sponsor this one, just drop me a line.

groetjes,
Sacha
Reply With Quote
  #980  
Old 04-23-2006, 03:14 PM
sinucello sinucello is offline
 
Join Date: Apr 2006
Location: dutch-german border
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I just updated the smallhelp phrase in german, maybe it`s useful for someone else
Quote:
Ermittle den L?ngen- und Breitengrad deines Wohnortes durch Vergr?sserung (zum Vergr?ssern einfach den Schieber auf der Skala nach oben bewegen und ggf. in die Satellitenansicht wechseln) und hin- un herziehen der Karte mit gedr?ckter linker Maustaste. Ein DOPPELKLICK zentriert die Karte punktgenau z. B. auf deinem Wohnhaus. Nach Eingabe der richtigen Koordinaten brauchst du nur noch das Textfeld auszuf?llen und auf "Aktualisieren" zu klicken. M?glicherweise ist es wesentlich einfacher, wenn du die Koordinaten deines Wohnortes hier: http://www.fallingrain.com/world/GM/ heraussuchst und direkt in die Eingabefelder links einf?gst. Dabei aber bitte beachten, dass immer nur der erste Wert eintragen wird. Also bei L?ngengrad z. B. "9.83333" und bei Breitengrad z. B. "47.6833".
I think this link: http://www.fallingrain.com/world/ could be added to the original phrase as it contains all coordinates of all towns worldwide (don`t know if it`s really true).

Ciao,
Sacha
Reply With Quote
  #981  
Old 04-23-2006, 05:16 PM
stonyarc stonyarc is offline
 
Join Date: Aug 2005
Location: Leuven (Belgium)
Posts: 930
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sinucello
Hi,

I just updated the smallhelp phrase in german, maybe it`s useful for someone else


I think this link: http://www.fallingrain.com/world/ could be added to the original phrase as it contains all coordinates of all towns worldwide (don`t know if it`s really true).

Ciao,
Sacha
Great find.

I'll make it default in the next version
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:36 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05122 seconds
  • Memory Usage 2,330KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete