<?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: D3 Geomap Integration? in Tools</title>
    <link>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533211#M303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am interested in this as well, may i have some pointers on how to start (is it just a layer?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Apr 2017 16:58:49 GMT</pubDate>
    <dc:creator>tmohamad</dc:creator>
    <dc:date>2017-04-19T16:58:49Z</dc:date>
    <item>
      <title>D3 Geomap Integration?</title>
      <link>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533209#M301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was looking at the options of the adding a map to the topology. Today it looks like you only support the AlbersUSA map?&lt;/P&gt;&lt;P&gt;Documentation seems also to state it requires D3 libs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would there be an easy to get the global geo map from D3 as background in the topology services instead of the USA only map?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below would be already a good start I assume, but no idea how I could put this into NextUI and if the license would even alow me to do so.&lt;/P&gt;&lt;P&gt;&lt;A href="https://d3-geomap.github.io/" title="https://d3-geomap.github.io/"&gt;d3.geomap - Create Geographic Maps for the Web&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any hints welcome. Would be great if they just included is out of the box in NextUI too.&lt;/P&gt;&lt;P&gt;I like the style of the artzub one even more: &lt;A href="http://d3.artzub.com/wbca/" title="http://d3.artzub.com/wbca/"&gt;http://d3.artzub.com/wbca/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xavier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2016 21:50:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533209#M301</guid>
      <dc:creator>xamerten</dc:creator>
      <dc:date>2016-03-26T21:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: D3 Geomap Integration?</title>
      <link>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533210#M302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #3d3d3d; font-family: arial; font-size: 12px;"&gt;Xavier,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually&amp;nbsp; NeXt support global geo map. Because of performance issue, I removed those from documentation but code is still there. Source code : &lt;A href="https://github.com/opendaylight/next/blob/master/src/js/graphic/topology/layout/WorldMapLayout.js" title="https://github.com/opendaylight/next/blob/master/src/js/graphic/topology/layout/WorldMapLayout.js"&gt;next/WorldMapLayout.js at master · opendaylight/next · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And an example : &lt;A href="https://jsfiddle.net/nextsupport/5xqa1aay/" title="https://jsfiddle.net/nextsupport/5xqa1aay/"&gt;World Map - JSFiddle&lt;/A&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do is &lt;SPAN style="font-size: 13.3333px;"&gt;register a WorldMap layout when topo is ready. and then use 'WorldMap' layout. Y&lt;SPAN style="font-size: 13.3333px;"&gt;ou need to put the json file to you server.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;topo.registerLayout('WorldMap', new nx.graphic.Topology.WorldMapLayout())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;layoutType: 'WorldMap',&lt;/P&gt;&lt;P&gt;layoutConfig: {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; longitude: 'model.longitude',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; latitude: 'model.latitude',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worldTopoJson: '//bl.ocks.org/mbostock/raw/4090846/world-50m.json'&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. The performance of Global map is quite bad, so i have two different approach.&lt;/P&gt;&lt;P&gt;1. I use Canvas/WebGL to rendering the map. Zooming performance is quit good, but not fully developed yet. Once I finished, i will commit that to code repo.&lt;/P&gt;&lt;P&gt;2. Use &lt;A href="http://leafletjs.com/"&gt;leafletjs&lt;/A&gt; as an background. Not deep dive into this, if you are interested, we could work on this together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 20:25:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533210#M302</guid>
      <dc:creator>aaikepae</dc:creator>
      <dc:date>2016-03-28T20:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: D3 Geomap Integration?</title>
      <link>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533211#M303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am interested in this as well, may i have some pointers on how to start (is it just a layer?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2017 16:58:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533211#M303</guid>
      <dc:creator>tmohamad</dc:creator>
      <dc:date>2017-04-19T16:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: D3 Geomap Integration?</title>
      <link>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533212#M304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohamad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you provide more details about your project? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 15:03:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/d3-geomap-integration/m-p/3533212#M304</guid>
      <dc:creator>alzverev</dc:creator>
      <dc:date>2017-04-20T15:03:54Z</dc:date>
    </item>
  </channel>
</rss>

