User Tools

Site Tools


built_in:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

built_in:start [2018/12/30 04:59]
114.125.15.7 [Table]
built_in:start [2018/12/31 01:07]
Line 1: Line 1:
-<!DOCTYPE html> 
-<html> 
-  <head> 
-    <style> 
-       /* Set the size of the div element that contains the map */ 
-      #map { 
-        height: 400px;  /* The height is 400 pixels */ 
-        width: 100%;  /* The width is the width of the web page */ 
-       } 
-    </style> 
-  </head> 
-  <body> 
-    <h3>My Google Maps Demo</h3> 
-    <!--The div element for the map --> 
-    <div id="map"></div> 
-    <script> 
-// Initialize and add the map 
-function initMap() { 
-  // The location of Uluru 
-  var uluru = {lat: -25.344, lng: 131.036}; 
-  // The map, centered at Uluru 
-  var map = new google.maps.Map( 
-      document.getElementById('map'), {zoom: 4, center: uluru}); 
-  // The marker, positioned at Uluru 
-  var marker = new google.maps.Marker({position: uluru, map: map}); 
-} 
-    </script> 
-    <!--Load the API from the specified URL 
-    * The async attribute allows the browser to render the page while the API loads 
-    * The key parameter will contain your own API key (which is not needed for this tutorial) 
-    * The callback parameter executes the initMap() function 
-    --> 
-    <script async defer 
-    src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"> 
-    </script> 
-  </body> 
-</html> 
-====Links==== 
-^ App and Layout                      ^ 
-| [[app|app object]]                  | 
-| [[built_in:app_events|App Events]]  | 
-| [[built_in:layouts|Layouts]]        | 
-==== Controls ==== 
-^ Controls                                                   ^ 
-| [[built_in:audiorecorder|AudioRecorder control]]           | 
-| [[built_in:bluetoothlist|BluetoothList control]]           | 
-| [[built_in:bluetoothserial|BluetoothSerial control]]       | 
-| [[built_in:buttons|Button control]]                        | 
-| [[built_in:cameraview|CameraView control]]                 | 
-| [[built_in:checkboxes|CheckBoxes]]                         | 
-| [[built_in:crypt|Crypt control]]                           | 
-| [[built_in:database|Database control]]                     | 
-| [[built_in:dialog|Dialog control]]                         | 
-| [[built_in:downloader|Downloader]]                         | 
-| [[built_in:email|Email control]]                           | 
-| [[built_in:create_file|File control]]                      | 
-| [[built_in:glview|GLView control]]                         | 
-| [[built_in:images|Image control]]                          | 
-| [[built_in:ioio|IOIO control]]                             | 
-| [[built_in:listdialog|ListDialog control]]                 | 
-| [[built_in:lists|List control]]                            | 
-| [[built_in:listview|ListView]]                             | 
-| [[built_in:locator|Locator control]]                       | 
-| [[built_in:mediaplayer|MediaPlayer control]]               | 
-| [[built_in:mediastore|MediaStore control]]                 | 
-| [[built_in:netclient|NetClient control]]                   | 
-| [[built_in:notification|Notification control]]             | 
-| [[built_in:nxt|NXT control]]                               | 
-| [[built_in:nxtinfo|NxtInfo control]]                       | 
-| [[built_in:nxtremote|NxtRemote control]]                   | 
-| [[built_in:scroller|Scroller control]]                     | 
-| [[built_in:seekbars|Seekbar control]]                      | 
-| [[built_in:sensors|Sensor control]]                        | 
-| [[built_in:service|Service control]]                       | 
-| [[built_in:smartwatch|SmartWatch control]]                 | 
-| [[built_in:sms|SMS control]]                               | 
-| [[built_in:speechrecognition|Speech Recognition control]]  | 
-| [[built_in:spinner|Spinner control]]                       | 
-| [[built_in:synth|Synth control]]                           | 
-| [[built_in:tabs|Tabs control]]                             | 
-| [[built_in:text|Text control]]                             | 
-| [[built_in:textedit|TextEdit control]]                     | 
-| [[built_in:togglebuttons|ToggleButton control]]            | 
-| [[built_in:usbserial|USBSerial control]]                   | 
-| [[built_in:videoview|VideoView control]]                   | 
-| [[built_in:webserver|WebServer control]]                   | 
-| [[built_in:webview|WebView control]]                       | 
-| [[built_in:yesnodialog|YesNoDialog]]                       | 
-| [[built_in:zip|ZipUtil control]]                           | 
  
----- 
- 
- 
-====Note for contributors==== 
-If you wish to create a new page in the **Built-in features** namespace, please create a link to the new page above, save this page and click on the link you just created. 
built_in/start.txt ยท Last modified: 2018/12/31 01:07 (external edit)