Google Maps

From NSB App Studio
Jump to navigation Jump to search

File:Googlemap.png

Description

The Google Maps control lets you embed Google Maps in your app. All the settings needed to display a map can be set at design time in AppStudio: no additional code needs to be written.

If you do want to change any settings at runtime, you can do so. Use the .refresh() method to redisplay the video with your new settings.

Properties

videoID YouTube Video ID
playlist Comma separated list of video IDs to play.
autoplay Start playing right away?
autohide Autohide controls?
controls Show player controls?
modestbranding Show YouTube logo?
playsinline Fullscreen playback on iOS?
rel Show related videos when done?
ratio Aspect ratio: 16x9 or 4x3
showinfo Show info about the video?
start Second to start at
theme Display theme: dark or light

Events

Events are handled by the control itself.

Example

This code lets the user enter a Video ID at runtime. It also resizes based on screen size.

Sub Main()
  txtVideoID.text=YouTube1.settings.videoID
End Sub

Function btnRefresh_onclick()
  YouTube1.settings.videoID = txtVideoID.text
  YouTube1.settings.width = Form1.Width-20
  YouTube1.refresh()
End Function

Output

Related Items