Actually, it looks like the example is just passing it to a php page, which then passes it into a text file, I have the code to get it to write to the text file working, but when I press submit on my form for the point, it just puts the information in the address bar as ? data=whateveryoutypedhere it is not making it to the part of the script where it pushes it to test.php for parsing.
On Dec 4, 5:31 pm, mtweldon <[email protected]> wrote: > Ok, I got it all working.. woo!http://map.fathomthat.org/test2.htm > > now I'm working on getting the map markers to work.. I have it semi > working, I can click and create a marker, but I'm not entirely sure > what my php page should look like to add it into a database. > > Used the information here:http://econym.org.uk/gmap/store.htmto get > started, but he does not include any information about what his php > page does. > > On Dec 4, 1:45 pm, Viridovix <[email protected]> wrote: > > > > > Well... if you don't have a server side script to return the tiles, > > the url is wrong! > > > The url you adopted assume that a server side script extract the url > > parameter (x=, y=, z=) and > > return the tile image. > > > Probably you simply access the file, thus you need to append the tile > > file name to the url. > > > Try this: > > > var f = "http://map.fathomthat.org/test/"+a.x+"_"+a.y+"_" + z + > > ".jpg"; > > > instead of: > > > var f = "http://map.fathomthat.org/test/?x="+a.x+"&y="+a.y > > +"&zoom="+z; > > > On 4 Dic, 17:08, mtweldon <[email protected]> wrote: > > > > I am working on creating a custom map for a game so people can click / > > > drag and add points, but thats later on. > > > > I'm working on actually getting the map / copyright to work correctly, > > > but after reading quite a few tutorials, I don't know how to determine > > > the coordinates of my map / custom tiles. > > > >http://map.fathomthat.org-page > > > >http://map.fathomthat.org/test-tiles > > > > are all of my tiles go 12_0_0.jpg to 17_9_9.jpg > > > > So far I have been successful in getting nothing but the UI to pop up, > > > any advice is welcome as I'm completely new to the API. > > > > Have been using the following for > > > tutorials:http://econym.org.uk/gmap/http://code.google.com/apis/maps/documentat... -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
