Google maps on android (which they probably spent most time developing, considering) has pinch and unpinch as well as the zoom buttons. The other right click features (directions, search and others) are on the menu that pops up with a left button click.
I guess that sounds okay as then I can make a bunch of vars and say something like this right?
var FirstMission = 1:3
if checked remove 1:3 image
I know that's not Javascript apart from the var but hopefully you understand what I mean there to say if thats possible or not as I need to be able to remove them and a remove all of them if they choose to just look at the map but seek no help.
Or you could use the actual URLs of the images instead of names. If you do use names, then we have to have *another* table that matches name to image URL, anyway.
var markers = {
"/images/questionMark.png" : [ "3:17", "22:4", "18:9" ],
"/images/goldIcon.png" : [ "41:8" ], /* make it an array even if only one */
"/images/blub_blub_blub.png" : [ "21:2", "21:3", "21:4" ]
}
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
I have these so far, however unlike the here and new objective png images, the chest images are 200x137px. Would it be best to scale them down to the maximum size they can be in the tiles and go from there?
I have these so far, however unlike the here and new objective png images, the chest images are 200x137px. Would it be best to scale them down to the maximum size they can be in the tiles and go from there?
Yes. Not necessary, but will make the page more efficient.
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.