 |
|
BaselScript |
Beschreibung
Navigation
Diese Funktion wird durch dieses Skript implementiert:
call map=navigation address= string/#field
z.B.
#address = "Mannheim, G7,8"
call map=navigation address=#address
Die Navigation erfolgt vom aktuellen Standort des Gadgets.
Beispielskript:
scene = 1 name="navigation to place" bgcolor =gray
section init
call dialog= dia
end section
dialog dia
tile=title text="Please enter address"
tile = input name = #address
tile = button text = navigation section = map
tile = button text = x section = back
end dialog
section map
message #address
call google=navigation address=#address
end section
section back
call script=map_menu
end section
end scene 1