You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2023/01/25 11:38:46 UTC

[royale-asjs] branch develop updated: Remove GM token from repo.

This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new c494e46ccd Remove GM token from repo.
c494e46ccd is described below

commit c494e46ccd39786b6bd9f98db90f808d987baa11
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Wed Jan 25 13:38:06 2023 +0200

    Remove GM token from repo.
    
    Examples user is expected to insert his own.
---
 examples/royale/DesktopMap/src/main/royale/MyInitialView.mxml | 2 +-
 examples/royale/MapSearch/src/main/royale/MyInitialView.mxml  | 4 ++--
 examples/royale/MobileMap/src/main/royale/MobileMap.mxml      | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/royale/DesktopMap/src/main/royale/MyInitialView.mxml b/examples/royale/DesktopMap/src/main/royale/MyInitialView.mxml
index 3ccb0482ce..55695680f7 100644
--- a/examples/royale/DesktopMap/src/main/royale/MyInitialView.mxml
+++ b/examples/royale/DesktopMap/src/main/royale/MyInitialView.mxml
@@ -148,7 +148,7 @@ limitations under the License.
 			<js:TextButton text="Clear" click="clearSearchResults()" />
 		</js:Group>
 		
-		<google:Map id="map" className="Map" token="AIzaSyDkQgg2iojLCYeuW6hK7DkuAHD-SwJJhdE" />
+		<google:Map id="map" className="Map" token="" /> <!-- insert your token here -->
 		
 		<js:Group className="LocationGroup">
 			<js:beads>
diff --git a/examples/royale/MapSearch/src/main/royale/MyInitialView.mxml b/examples/royale/MapSearch/src/main/royale/MyInitialView.mxml
index d78d63767d..b5c740c4eb 100644
--- a/examples/royale/MapSearch/src/main/royale/MyInitialView.mxml
+++ b/examples/royale/MapSearch/src/main/royale/MyInitialView.mxml
@@ -203,8 +203,8 @@ limitations under the License.
 		</js:Group>
 		
 		<google:Map id="map" className="MainMap"
-					token="AIzaSyDkQgg2iojLCYeuW6hK7DkuAHD-SwJJhdE" 
-					ready="onMapReady()"/>
+					token=""  
+					ready="onMapReady()"/> <!-- insert your token here -->
 		
 		<js:Group className="InnerBox">
 			<js:beads>
diff --git a/examples/royale/MobileMap/src/main/royale/MobileMap.mxml b/examples/royale/MobileMap/src/main/royale/MobileMap.mxml
index b7dc377266..aa0ec743d9 100644
--- a/examples/royale/MobileMap/src/main/royale/MobileMap.mxml
+++ b/examples/royale/MobileMap/src/main/royale/MobileMap.mxml
@@ -67,7 +67,7 @@ limitations under the License.
             		<js:Label id="label" text="" width="75%" />
             	</js:HContainer>
             	<google:Map id="map" width="100%" height="600" 
-                        token="AIzaSyDkQgg2iojLCYeuW6hK7DkuAHD-SwJJhdE" />
+                        token="" /> <!-- insert your token here -->
             </js:VContainer>
         </js:View>
     </mjs:initialView>