<?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>topic Re: javascript 3.14 issue with Google Street View in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516148#M48161</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There may be some creative ways to stay within TOS. I think they are still working-out what their developers say and what businesses and users want from their APIs since adding paid plans a few years back. For us, at least, there were several deal breakers in using Google Maps for Work - Google was very inflexible in changing their terms. I guess you can do that when you are Google.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2015 15:14:37 GMT</pubDate>
    <dc:creator>ChrisSmith7</dc:creator>
    <dc:date>2015-09-09T15:14:37Z</dc:date>
    <item>
      <title>javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516143#M48156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wanted to make people aware of an issue with the 3.14 api and Street View&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3.14 api introduces a new css element in esri.css&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.map .container .layersDiv &amp;gt; div {
&amp;nbsp;&amp;nbsp;&amp;nbsp; pointer-events: none;
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This breaks google street view if you have it embedded in your map div as a child, as it uses pointer-elements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a workaround, when street view is visible, loop through the elements and turn pointer-events on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;array.forEach(query('.map .container .layersDiv &amp;gt; div'), function(node){
&amp;nbsp;&amp;nbsp; domStyle.set(node, 'pointerEvents', 'auto');&amp;nbsp; 
});&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then when you close street view, turn them back off&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;array.forEach(query('.map .container .layersDiv &amp;gt; div'), function(node){
&amp;nbsp;&amp;nbsp; domStyle.set(node, 'pointerEvents', 'none');&amp;nbsp; 
});&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:32:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516143#M48156</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2021-12-11T22:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516144#M48157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Just FYI, you are violating Googles TOS if you are adding Google Street View as a child window to any other product than Google maps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 14:04:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516144#M48157</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-09-09T14:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516145#M48158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I'll second this. Google is very strict with their TOS... Can't even show points from their geocoding API unless it's on a Google Map, and their free service is only for prototyping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as enforcement, you may fly under the radar for awhile, but I would not recommend that!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 14:34:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516145#M48158</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-09-09T14:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516146#M48159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont believe I am.&amp;nbsp; I am adding a google map to my map, and then activating street view in that window.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 14:52:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516146#M48159</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2015-09-09T14:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516147#M48160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addtion &lt;A href="https://developers.google.com/maps/terms" title="https://developers.google.com/maps/terms"&gt;Google Maps/Google Earth APIs Terms of Service&amp;nbsp; |&amp;nbsp; Google Maps APIs&amp;nbsp; |&amp;nbsp; Google Developers&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="la" style="padding-left: 40px; list-style: lower-alpha outside; color: #212121; font-family: Roboto, sans-serif; font-size: 16px;"&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;No use of Content without a Google map&lt;/SPAN&gt;. Unless the &lt;A href="https://developers.google.com/maps/documentation/" style="color: #03a9f4;"&gt;Maps APIs Documentation&lt;/A&gt; expressly permits you to do so, you will not use the Content in a Maps API Implementation without a corresponding Google map. For example, you may display Street View imagery without a corresponding Google map because the &lt;A href="https://developers.google.com/maps/documentation/" style="color: #03a9f4;"&gt;Maps APIs Documentation&lt;/A&gt;expressly permits this use.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Street View is allowed outside a Google Map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px; color: #212121; font-family: Roboto, sans-serif; font-size: 16px;"&gt;&lt;SPAN class="sub-section-head" style="font-weight: bold;"&gt;9.1 Free, Public Accessibility to Your Maps API Implementation&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px;"&gt;9.1.1 General Rules.&lt;/P&gt;&lt;OL class="la" style="padding-left: 40px; list-style: lower-alpha outside;"&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;Free access (no fees)&lt;/SPAN&gt;. Subject to Section 9.1.2 (Exceptions), your Maps API Implementation must be accessible to the general public without charge and must not require a fee-based subscription or other fee-based restricted access. This rule applies to Your Content and any other content in your Maps API Implementation, whether Your Content or the other content exists now or is added later.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I do think I am within the terms, even if its borderline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:01:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516147#M48160</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2015-09-09T15:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516148#M48161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There may be some creative ways to stay within TOS. I think they are still working-out what their developers say and what businesses and users want from their APIs since adding paid plans a few years back. For us, at least, there were several deal breakers in using Google Maps for Work - Google was very inflexible in changing their terms. I guess you can do that when you are Google.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:14:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516148#M48161</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-09-09T15:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516149#M48162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.google.com/permissions/geoguidelines.html#streetview" title="http://www.google.com/permissions/geoguidelines.html#streetview"&gt;http://www.google.com/permissions/geoguidelines.html#streetview&lt;/A&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; First, review the &lt;A href="http://www.google.com/permissions/geoguidelines.html#basics"&gt;Google Maps and Earth Permissions Basics&lt;/A&gt;, which apply to all uses of our maps. Then continue with the guidance in this section. &lt;/P&gt;&lt;P&gt; Street View imagery may be incorporated into your project if 1) the imagery comes directly from the &lt;A href="https://developers.google.com/maps/documentation/javascript/streetview"&gt;Google Maps API&lt;/A&gt;, Google Maps or Google Earth; or 2) the imagery is embedded or linked on your website using the HTML and URL provided on &lt;A href="https://maps.google.com/"&gt;Google Maps&lt;/A&gt;. These solutions ensure that if Google edits or removes imagery in response to user requests, these changes will be reflected in your project as well. &lt;/P&gt;&lt;P&gt; If you have an academic and non-commercial request for Street View imagery that does not qualify under these guidelines, you may contact us at &lt;A href="mailto:streetview-academic@google.com"&gt;streetview-academic@google.com&lt;/A&gt; with the details of your project to request permission. &lt;/P&gt;&lt;P&gt; No other uses of Street View imagery are allowed. Note that some imagery in Street View is provided by entities other than Google, as indicated in its photo credits; in those instances permission must be obtained from the third party. &lt;/P&gt;&lt;P&gt; If your project meets the requirements above, no explicit permission is required for your project. We are unable to sign any letter or contract specifying that your project has our explicit permission. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you may be right, I thought I had read something about not being able to embed or have SV as a child window of a map other than Google Maps, but I can't seem to find that right now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:25:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516149#M48162</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-09-09T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516150#M48163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One thing that really worried us - Google (and the reseller) would not send legal contract documents for any TOS agreements; they would only point to a URL for us to peruse on the web.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, that means Google could change their TOS at any moment... Just something to keep in mind. In essence, don't become dependent on a Google process... you never know if/when their terms will change!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 15:31:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516150#M48163</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-09-09T15:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: javascript 3.14 issue with Google Street View</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516151#M48164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the links Robert.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe I am meeting both 1 and 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have google maps in my application via the api.&amp;nbsp; Street View is only accessible view google maps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only question I have is if embedding google maps is allowed.&amp;nbsp; I might have to reach out to google. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That being said, it is a value add, not a critical work function.&amp;nbsp; Removing it is trivial.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 16:12:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-3-14-issue-with-google-street-view/m-p/516151#M48164</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2015-09-09T16:12:08Z</dc:date>
    </item>
  </channel>
</rss>

