IPB

Welcome Guest ( Log In | Register )

2 Pages V   1 2 >  
Reply to this topicStart new topic
> Any real-life hackers out there?, I need a Shadowrun Website h4x0r3d
chinagreenelvis
post Jul 12 2010, 09:02 PM
Post #1


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



http://www.1w6.de/rpg/sr/map/

Seriously. I want the code that runs this site so I can

a. make it possible to zoom in closer

and

b. add things to it
Go to the top of the page
 
+Quote Post
Critias
post Jul 12 2010, 09:10 PM
Post #2


Freelance Elf
*********

Group: Dumpshocked
Posts: 7,324
Joined: 30-September 04
From: Texas
Member No.: 6,714



Then maybe you should

a. find out who runs it

and

b. talk to them.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 12 2010, 09:14 PM
Post #3


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



But I've

a. already thought of that

and

b. sent an e-mail through the site and used Google to translate it into German so they can understand what it is I want

and

c. anticipated that I will probably never, ever get a response
Go to the top of the page
 
+Quote Post
Cabral
post Jul 12 2010, 09:18 PM
Post #4


Moving Target
**

Group: Members
Posts: 734
Joined: 30-August 05
Member No.: 7,646



http://www.1w6.de/rpg/sr/

My German is non-existent, but I gather they use Google Map. Plug that url into Google and the translation of that page should give you a tip or two.
Go to the top of the page
 
+Quote Post
Dr.Rockso
post Jul 12 2010, 09:36 PM
Post #5


Moving Target
**

Group: Members
Posts: 583
Joined: 6-November 09
From: MTL
Member No.: 17,849



The site has an awesome interactive flash map of Seattle though : http://www.1w6.de/rpg/sr/seattledistricts.php4
Go to the top of the page
 
+Quote Post
Stahlseele
post Jul 12 2010, 09:44 PM
Post #6


The ShadowComedian
**********

Group: Dumpshocked
Posts: 14,538
Joined: 3-October 07
From: Hamburg, AGS
Member No.: 13,525



The Descriptions of the dots on the map are in english for me O.o
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 12 2010, 10:09 PM
Post #7


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Oh, it's all in English and works great, except for the part about not being able to zoom in to street level (the clusterfuck of dots just north of the Arcology is impossible to work through otherwise). Also, I'd like to be able to add some things to it.
Go to the top of the page
 
+Quote Post
Hartbaine
post Jul 12 2010, 10:16 PM
Post #8


Moving Target
**

Group: Members
Posts: 141
Joined: 4-September 07
Member No.: 13,115



It's just a Google map. Make your own. I use them all the time for World of Darkness games.
Go to the top of the page
 
+Quote Post
biccat
post Jul 12 2010, 10:19 PM
Post #9


Target
*

Group: Members
Posts: 42
Joined: 29-August 02
Member No.: 3,195



Nice map.

Reminds me of one a friend did (although it wasn't online) with pins. He also had traveled to Seattle recently and had photographs of famous places.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 12 2010, 10:28 PM
Post #10


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



QUOTE (Hartbaine @ Jul 12 2010, 10:16 PM) *
It's just a Google map. Make your own. I use them all the time for World of Darkness games.


I don't have the time or energy to start from scratch. I want to appropriate the hard work of others.
Go to the top of the page
 
+Quote Post
Abschalten
post Jul 12 2010, 10:30 PM
Post #11


Running Target
***

Group: Members
Posts: 1,076
Joined: 31-August 05
From: Rock Hill, SC
Member No.: 7,655



QUOTE (chinagreenelvis @ Jul 12 2010, 06:28 PM) *
I don't have the time or energy to start from scratch. I want to appropriate the hard work of others.


LAWL! (IMG:style_emoticons/default/ohplease.gif)
Go to the top of the page
 
+Quote Post
Cabral
post Jul 12 2010, 10:43 PM
Post #12


Moving Target
**

Group: Members
Posts: 734
Joined: 30-August 05
Member No.: 7,646



Try this:
http://bbs.keyhole.com/ubb/ubbthreads.php?...ite_id=1#import
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 12 2010, 11:52 PM
Post #13


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Hm. You know, that might be even better. Thanks!
Go to the top of the page
 
+Quote Post
Congzilla
post Jul 13 2010, 12:37 AM
Post #14


Target
*

Group: Members
Posts: 84
Joined: 23-October 09
Member No.: 17,787



Just do 'view source', it has the java script laying right out on that page.

CODE
var point = new GPoint(-122.33603, 47.61000);
      var html = '<div class="text"><b>Wylie´s Gala Inn</b><br>4th Avenue & Pike Street<br>Middle-Class Hotel (20 floors)<p>The 1930s decor of this hotel seems better-suited<br />to a detective trideo than to modern-day Seattle.<br />Service is good, if a little slow. This was the<br />first hotel of the small Wylie´s Gala Inn chain.</p></div>';
var marker = createMarker(point, html, icon_hotel);
      map.addOverlay(marker);


These are the bits you need to change.

To change what the markers represent change these bits.

CODE
var myshadow = new Image(17, 17);
myshadow.src = 'clear.png';

var icon = new GIcon();
icon.image = "dot.png";
icon.shadow = "clear.png";
icon.iconSize = new GSize(15, 15);
icon.shadowSize = new GSize(17, 17);
icon.iconAnchor = new GPoint(7, 7);
icon.infoWindowAnchor = new GPoint(7, 7);
Go to the top of the page
 
+Quote Post
Congzilla
post Jul 13 2010, 12:51 AM
Post #15


Target
*

Group: Members
Posts: 84
Joined: 23-October 09
Member No.: 17,787



This is the best thing to use to strip apart a website btw.

https://addons.mozilla.org/en-US/firefox/addon/60/
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 01:34 AM
Post #16


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Ah yeah, we use the Web Dev plugin at work. Hadn't thought of that.

I did however just save the page, which I then uploaded to http://shadowrun.chinagreenelvis.com/seattlemap in order to test it. It loads everything just fine but for some reason the dots disappear after loading, as if the z-indexes of everything were borked. I'll have to look closer.

I did find that code for adding new dots - which would take a pretty good amount of trial and error for getting the locations right, but thankfully not at all impossible. The one crucial element that I'm lacking is the ability to zoom in even further, even if it pixellates or blurs the map images. If anyone can scan the codes and figure this part out, that would be truly karma-worthy.

Thanks for all the suggestions!
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 01:36 AM
Post #17


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Hm. I'm noticing that when the dots disappear, the page starts loading information from the original website. Curious.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 01:50 AM
Post #18


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Yeah, having just saved the page through firefox basically killed the functionality. I'll try going back to the original source.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 02:45 AM
Post #19


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Looks like the dots are set to Earth coordinates as opposed to pixels or percentages. As long as I have those, I should be able to recreate the contents in another map. Guh. I still can't fathom why they didn't make it possible to zoom in further in their version, plus I'm wondering where the map tiles they're using came from. They appear to have been custom made. Oh well.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 04:54 AM
Post #20


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



Woot.

http://shadowrun.chinagreenelvis.com/map/

Go to the top of the page
 
+Quote Post
Mäx
post Jul 13 2010, 07:13 AM
Post #21


Prime Runner
*******

Group: Members
Posts: 3,803
Joined: 3-February 08
From: Finland
Member No.: 15,628



QUOTE (chinagreenelvis @ Jul 13 2010, 06:54 AM) *

Well nice job making it more zoomable, but its not really cool to steal other peoples work like that.
Go to the top of the page
 
+Quote Post
IKerensky
post Jul 13 2010, 07:57 AM
Post #22


Moving Target
**

Group: Members
Posts: 303
Joined: 26-May 10
Member No.: 18,622



QUOTE (chinagreenelvis @ Jul 12 2010, 10:02 PM) *
http://www.1w6.de/rpg/sr/map/

Seriously. I want the code that runs this site so I can

a. make it possible to zoom in closer

and

b. add things to it


a. use the CTRL + mouse wheels

(IMG:style_emoticons/default/nyahnyah.gif)
Go to the top of the page
 
+Quote Post
simplexio
post Jul 13 2010, 08:30 AM
Post #23


Target
*

Group: Members
Posts: 35
Joined: 14-January 08
Member No.: 15,275



I got this Idea, how about creating page into shadowrunWiki which has Name, GPS point and short description or reference to book in some useful format. So that people could grab it and use POI data in Google maps overlays or whatever people use for their map drawing.

That could be useful tool for community.
Other ideas include taking current height data and change it according shadowrun rule books (you need height rastermaps for this, available for free), Overlays like 1w6 site has about ratings in area, etc. Just publish them in some usable geodata format and it should be easy to people add their own tools. Best part using standard geodata formats is that you can overlay all that data into Google Maps and/or use all existing geodata with shadowrun data.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 11:41 AM
Post #24


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



QUOTE (Mäx @ Jul 13 2010, 07:13 AM) *
Well nice job making it more zoomable, but its not really cool to steal other peoples work like that.


What can I say? I'm a bastard. But much as I did with the diceroller, I'll be including original credit in the page's source-code with a link to the German site. I was just too tired to add it in last night.

Edit: Just got an e-mail from the guy who runs the site. Permission was given to appropriate their work for my own use. All is well.
Go to the top of the page
 
+Quote Post
chinagreenelvis
post Jul 13 2010, 11:41 AM
Post #25


Moving Target
**

Group: Members
Posts: 147
Joined: 6-March 10
Member No.: 18,253



QUOTE (IKerensky @ Jul 13 2010, 07:57 AM) *
a. use the CTRL + mouse wheels

(IMG:style_emoticons/default/nyahnyah.gif)


LOL. That was the first thing I tried! Unfortunately it just makes the clusterfuck of dots bigger, rather than creating space between them.
Go to the top of the page
 
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic

 



RSS Lo-Fi Version Time is now: 28th March 2024 - 12:01 PM

Topps, Inc has sole ownership of the names, logo, artwork, marks, photographs, sounds, audio, video and/or any proprietary material used in connection with the game Shadowrun. Topps, Inc has granted permission to the Dumpshock Forums to use such names, logos, artwork, marks and/or any proprietary materials for promotional and informational purposes on its website but does not endorse, and is not affiliated with the Dumpshock Forums in any official capacity whatsoever.