RS world map???

Discussion in 'Programming General' started by master447, Nov 5, 2007.

RS world map???
  1. Unread #1 - Nov 5, 2007 at 9:20 PM
  2. master447
    Joined:
    Nov 5, 2007
    Posts:
    169
    Referrals:
    0
    Sythe Gold:
    0

    master447 Active Member
    Banned

    RS world map???

    is there a way that i can make a world map work like the one on runescape with the hole drag and move thing???
     
  3. Unread #2 - Nov 5, 2007 at 10:40 PM
  4. jdsfighter
    Joined:
    Jan 21, 2007
    Posts:
    603
    Referrals:
    0
    Sythe Gold:
    0

    jdsfighter Forum Addict
    Visual Basic Programmers

    RS world map???

    Thats actually rather easy. Go to runescape and download the map picture there. Put it in a picture box called picture1 and use the following code.

    Code:
    Dim X1, Y1
    
    Private Sub Picture1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
    X1 = X
    Y1 = Y
    End Sub
    
    Private Sub Picture1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Picture1.Left = Picture1.Left - (X1 - X)
    Picture1.Top = Picture1.Top - (Y1 - Y)
    End Sub
     
  5. Unread #3 - Nov 6, 2007 at 12:28 PM
  6. master447
    Joined:
    Nov 5, 2007
    Posts:
    169
    Referrals:
    0
    Sythe Gold:
    0

    master447 Active Member
    Banned

    RS world map???

    ty this helped :0
     
  7. Unread #4 - Nov 7, 2007 at 1:44 AM
  8. UmagChris
    Joined:
    Mar 13, 2007
    Posts:
    135
    Referrals:
    0
    Sythe Gold:
    0

    UmagChris Active Member

    RS world map???

    Or you can make a new form and get it to connect to the site where the map is

    For example..

    Code:
    WebBrowser1.Navigate "http://www.runescape.com/aff/runescape/worldmap/popupworldmap.ws"
    Oh and you will need the anti redirection code as well..

    Code:
    If URL = "http://www.runescape.com/" Then Cancel = True
    You should know where to put these. Anyway this is just a basic map, and needs work. Good luck with this :)
     
  9. Unread #5 - Nov 20, 2007 at 3:19 AM
  10. cwade12c
    Referrals:
    0

    cwade12c Guest

    RS world map???

    Just get the full picture and add it into your form. Use a code which allows you to drag accross your Form interface. :/
    That way nobody has to wait for Java or anything to load. Swift and Easy as hell.

    An additional tool you could add would be a Search Tool. Allow users to search for towns or places, and when a query matches, it will take them to the coordinates on the map you have included, as a bitmap image.

    Goodluck!
     
< Rattys Tutorials | What's wrong with this.. >

Users viewing this thread
1 guest


 
 
Adblock breaks this site