Google Maps: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "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 i...")
 
Line 23: Line 23:
| modestbranding || Show YouTube logo?
| modestbranding || Show YouTube logo?
|-
|-
| playsinline" || Fullscreen playback on iOS?
| playsinline || Fullscreen playback on iOS?
|-
|-
| rel || Show related videos when done?
| rel || Show related videos when done?
Line 35: Line 35:
| theme || Display theme: dark or light
| theme || Display theme: dark or light
|}
|}


== Events ==
== Events ==

Revision as of 09:37, 10 April 2014

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