Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 User Map with XThreads?
meister-igi Offline
Junior Member
**
Posts: 5
Joined: Sep 2012
Post: #51
RE: User Map with XThreads?
Problem: see screenshot..

why ?

what can i do?


Attached File(s) Thumbnail(s)
   
09-26-2012 09:30 AM
Find all posts by this user Quote this message in a reply
Scott Offline
Junior Member
**
Posts: 6
Joined: Oct 2012
Post: #52
RE: User Map with XThreads?
I have the same issue as the guy above.  Which I'm pretty sure I've narrowed down to an error with XHTML parsing the variable inside the javascript, but still can't get it to work.  I've even tried downgrading XThreads to versions from early 2011 and still can't get it to work.  Kind of baffles me.  

http://validator.w3.org/check?uri=http%3...http://validator.w3.org/check?uri=http%3A%2F%2Fnewellgurus.com%2FForum-Usermap&charset=%28detect+automatically%29&doctype=Inli

newellgurus.com/Forum-Usermap
10-26-2012 12:35 PM
Find all posts by this user Quote this message in a reply
ZiNgA BuRgA Offline
Fag
*******
Posts: 3,357
Joined: Jan 2008
Post: #53
RE: User Map with XThreads?
Haven't looked into it, but what I see in Firefox 15:
http://i.imgur.com/RAb4A.jpg

My Blog
10-26-2012 05:15 PM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #54
RE: User Map with XThreads?
@ Scott: I don't know about the meister-igi's problem because there is no enough info supplied by him. For your problem, do you mean that the marker isn't displayed on the map? If so, (based on your url), if you have a global announcements or a forum announcements, try creating a blank umap_forumdisplay_threads_sep template in your global template.

10-27-2012 01:10 AM
Find all posts by this user Quote this message in a reply
Scott Offline
Junior Member
**
Posts: 6
Joined: Oct 2012
Post: #55
RE: User Map with XThreads?
It must be a chrome thing, because myself and one other user (both chrome) can't even view the map, white box.  I was able to have it properly display in chrome if I manually edited out "<tr>
<td class="trow_sep" colspan="8">Normal Threads</td>
</tr>" from the first element in markers.  

I guess chrome is parsing xhtml differently.
10-27-2012 07:25 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #56
RE: User Map with XThreads?
(10-27-2012 07:25 AM)Scott Wrote:  I was able to have it properly display in chrome if I manually edited out "<tr>
<td class="trow_sep" colspan="8">Normal Threads</td>
</tr>" from the first element in markers.

That's why I told you this:
(10-27-2012 01:10 AM)RateU Wrote:  try creating a blank umap_forumdisplay_threads_sep template in your global template.

10-28-2012 01:06 AM
Find all posts by this user Quote this message in a reply
Scott Offline
Junior Member
**
Posts: 6
Joined: Oct 2012
Post: #57
RE: User Map with XThreads?
(10-28-2012 01:06 AM)RateU Wrote:  
(10-27-2012 07:25 AM)Scott Wrote:  I was able to have it properly display in chrome if I manually edited out "<tr>
<td class="trow_sep" colspan="8">Normal Threads</td>
</tr>" from the first element in markers.

That's why I told you this:
(10-27-2012 01:10 AM)RateU Wrote:  try creating a blank umap_forumdisplay_threads_sep template in your global template.
That's me being stupid and not even checking to see if it fixed it when I added it.  Thanks.

For those looking, if you want to now add mouseover to your pins, you need to edit umap_forum_display_threadlist and put the following code near the other listeners:

Code:
1
2
3
4
5
6
7
google.maps.event.addListener(marker, "mouseover", function() {
                infowindow.setContent(contentString); 
	        infowindow.open(map,marker);
        });
        google.maps.event.addListener(marker, "mouseout", function() {
	        infowindow.close(map,marker);
        });


Also, for anyone wanting to center around CONUS.. in umap_forumdisplay_threadlist change

Code:
var myLatlng = new google.maps.LatLng(0, 0);

to

Code:
var myLatlng = new google.maps.LatLng(37.2533887, -95.71593200000001);

  Then change zoom under initialize to a comfortable value like 4.  

Is there anyway to change the actual pin (red pointer) to other icons?  If so, it'd be nice to have a pre-built list of icons for my users.

(This post was last modified: 10-28-2012 06:20 AM by Scott.)
10-28-2012 03:12 AM
Find all posts by this user Quote this message in a reply
MrBrechreiz Offline
Member
***
Posts: 69
Joined: May 2012
Post: #58
RE: User Map with XThreads?
(09-26-2012 09:30 AM)meister-igi Wrote:  Problem: see screenshot..

why ?

what can i do?

Go to your "Forum" (where this umap displaying) --> Settings Overrides

klick in to Field and search in Setting "Server and Optimization Options" --> Output template start/end comments? and type "0" for Value --> save Changes.

The following is then displayed

Code:
tplhtmlcomments=0


Save your Forum



Attached File(s) Thumbnail(s)
   
10-28-2012 10:11 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #59
RE: User Map with XThreads?
(10-28-2012 03:12 AM)Scott Wrote:  Is there anyway to change the actual pin (red pointer) to other icons?  If so, it'd be nice to have a pre-built list of icons for my users.
Use icon properties for the marker options.

10-29-2012 01:59 AM
Find all posts by this user Quote this message in a reply
meister-igi Offline
Junior Member
**
Posts: 5
Joined: Sep 2012
Post: #60
RE: User Map with XThreads?
(10-28-2012 10:11 AM)MrBrechreiz Wrote:  
(09-26-2012 09:30 AM)meister-igi Wrote:  Problem: see screenshot..

why ?

what can i do?

Go to your "Forum" (where this umap displaying) --> Settings Overrides

klick in to Field and search in Setting "Server and Optimization Options" --> Output template start/end comments? and type "0" for Value --> save Changes.

The following is then displayed

Code:
tplhtmlcomments=0


Save your Forum

sorry aber auf deutsch... ich bekomme es nicht hin
10-30-2012 10:32 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: