<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Using Google Maps with SAPUI5 GeoMap control in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388931#M37636</link>
    <description>&lt;P&gt;I don't think you need an API key. At least when I used it.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Thijs&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 12:36:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-11-30T12:36:35Z</dc:date>
    <item>
      <title>Using Google Maps with SAPUI5 GeoMap control</title>
      <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaq-p/388928</link>
      <description>&lt;P&gt;Many people seem to agree that it is possible to use Google maps as the source for a MapProvider for a GeoMap control.  However, nobody seems to know what url or provider name to use.  I have some code that uses HERE Maps, and it works just fine (see below).  Does anyone know how to configure this to use Google Maps.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;							&amp;lt;vk:content&amp;gt;
								&amp;lt;vbm:GeoMap id="GeoMap" width="100%" height="100%"&amp;gt;
									&amp;lt;vbm:vos&amp;gt;
										&amp;lt;vbm:Spots 
											click="onClickItem" 
											contextMenu="onContextMenuItem" 
											id="caseTimeMapSpots" 
											items="{path: '/CaseEvents/results'}" 
											posChangeable="true" 
											scaleChangeable="true"
											&amp;gt;
											&amp;lt;vbm:items&amp;gt;
											&amp;lt;vbm:Spot 
												id="Spot"
												position="{Longitude};{Latitude};0" 
												tooltip="{EventName} - {path: 'EventDatetime', formatter: '.formatDate'} {path: 'EventDatetime', formatter: '.formatTime'}" 
												type="Warning"
												click="onClickSpot" 
												contextMenu="onContextMenuSpot" 
												text="{EventName}"
												scale="{path: 'DeleteInd', formatter: '.formatScale'}"
											/&amp;gt;
											&amp;lt;/vbm:items&amp;gt;
										&amp;lt;/vbm:Spots&amp;gt;
									&amp;lt;/vbm:vos&amp;gt;
								&amp;lt;/vbm:GeoMap&amp;gt;
							&amp;lt;/vk:content&amp;gt;



			var oGeoMap = this.getView().byId("GeoMap");
			var oMapConfig = {
				"MapProvider": [{
					"name": "HEREMAPS",
					"type": "",
					"description": "",
					"tileX": "256",
					"tileY": "256",
					"maxLOD": "20",
					"copyright": "Tiles Courtesy of HERE Maps",
					"Source": [
						{
						"id": "s1",
                        "url": "https://1.base.maps.cit.api.here.com/maptile/2.1/maptile/newest/normal.day/{LOD}/{X}/{Y}/256/png8?app_id=ZudDgWvkdmhKTRo9VFzE&amp;amp;app_code=7VFWm85t9rRZQHcDFQiXrA"
						},
						{
						"id": "s2",
                        "url": "https://2.base.maps.cit.api.here.com/maptile/2.1/maptile/newest/normal.day/{LOD}/{X}/{Y}/256/png8?app_id=ZudDgWvkdmhKTRo9VFzE&amp;amp;app_code=7VFWm85t9rRZQHcDFQiXrA"
						}
					]
				}],
				"MapLayerStacks": [{
					"name": "DEFAULT",
					"MapLayer": {
						"name": "layer1",
						"refMapProvider": "HEREMAPS",
						"opacity": "1.0",
						"colBkgnd": "RGB(255,255,255)"
					}
				}]
			};
			oGeoMap.setMapConfiguration(oMapConfig);
			oGeoMap.setRefMapLayerStack("DEFAULT");
			oGeoMap.setInitialZoom(13);
			oGeoMap.setInitialPosition("-97.57;35.57;0");
 &lt;BR /&gt;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 31 Oct 2016 18:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaq-p/388928</guid>
      <dc:creator>former_member278703</dc:creator>
      <dc:date>2016-10-31T18:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using Google Maps with SAPUI5 GeoMap control</title>
      <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388929#M37634</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;var oMapConfig = {
				"MapProvider": [{
					"name": "GMAP",
					"Source": [{
						"id": "s1",
						"url": "https://mt.google.com/vt/lyrs=s&amp;amp;x={X}&amp;amp;y={Y}&amp;amp;z={LOD}"
					}]
				}],
				"MapLayerStacks": [{
					"name": "DEFAULT",
					"MapLayer": {
						"name": "layer1",
						"refMapProvider": "GMAP",
						"opacity": "1",
						"colBkgnd": "RGB(255,255,255)"
					}
				}]
			};
			oMap.setMapConfiguration(oMapConfig);
			oMap.setRefMapLayerStack("DEFAULT");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 30 Sep 2017 11:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388929#M37634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-09-30T11:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using Google Maps with SAPUI5 GeoMap control</title>
      <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388930#M37635</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Where i need to put the api key for google maps?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 08:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388930#M37635</guid>
      <dc:creator>Jayakrishnan</dc:creator>
      <dc:date>2018-11-30T08:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using Google Maps with SAPUI5 GeoMap control</title>
      <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388931#M37636</link>
      <description>&lt;P&gt;I don't think you need an API key. At least when I used it.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Thijs&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 12:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388931#M37636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-30T12:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Google Maps with SAPUI5 GeoMap control</title>
      <link>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388932#M37637</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I want to add Google map street view in my project, Is it possible?&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 08:19:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/using-google-maps-with-sapui5-geomap-control/qaa-p/388932#M37637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-09-06T08:19:36Z</dc:date>
    </item>
  </channel>
</rss>

