<?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: Does anyone have a good ModelMarkerSymbol example with a 3ds model? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400910#M4774</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I try to write one tomorrow if you still have issues with 3d symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Antti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Aug 2015 16:09:58 GMT</pubDate>
    <dc:creator>AnttiKajanus1</dc:creator>
    <dc:date>2015-08-11T16:09:58Z</dc:date>
    <item>
      <title>Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400909#M4773</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 have been trying to use the ModelMarkerSymbol in the new 10.2.6.&amp;nbsp; So far I have not been able to get anything to display.&amp;nbsp; This is the link to the model I have been trying,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http://tf3dm.com/3d-model/mq-9-predator-7547.html" rel="nofollow" target="_blank"&gt;http://tf3dm.com/3d-model/mq-9-predator-7547.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a good example of how to use this type of symbol with a 3ds model.&amp;nbsp; There doesn't seem to be one included in the samples.&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;Phil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 11:52:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400909#M4773</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-07T11:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400910#M4774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I try to write one tomorrow if you still have issues with 3d symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Antti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2015 16:09:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400910#M4774</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-08-11T16:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400911#M4775</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;You should be able to create it more or less like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create renderer with ModelMarkerSymbol&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:SimpleRenderer x:Key="RedArrowModelRenderer"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ModelMarkerSymbol Scale="1000" SourceUri=".\\Data\\RedArrow.dae"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer.SceneProperties&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:RendererSceneProperties HeadingExpression = "[heading]" PitchExpression="[pitch]" RollExpression="[roll]"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer.SceneProperties&amp;gt;
&amp;lt;/esri:SimpleRenderer&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then just define your layer to use that renderer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:17:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400911#M4775</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2021-12-11T18:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400912#M4776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Annti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your example.&amp;nbsp; Unfortunately I am still having issues.&amp;nbsp; I have applied the renderer to a graphics overlay and tried adding a graphic.&amp;nbsp; Nothing displays.&amp;nbsp; I have replaced the modelmarkersymbol for a straight marker symbol and that displays fine.&amp;nbsp; Both 3ds and dae models have been tried.&amp;nbsp; I have a feeling its something to do with the path.&amp;nbsp; Have you tested the above example with success?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 07:09:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400912#M4776</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-14T07:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400913#M4777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just make sure that the path is correct to the dae file. If you include that to the project, make sure that it ends to the bin folder too. If that doesn't help,could you provide me a simple reproducer from your issue? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 09:13:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400913#M4777</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-08-14T09:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400914#M4778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Annti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will post my example to you when I get home from work, its on my other laptop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 14:57:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400914#M4778</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-14T14:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400915#M4779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Annti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you manage to have a look at the example I uploaded?&amp;nbsp; I have had a little success with some models I downloaded, by ensuring the textures where in the same level as the 3ds file.&amp;nbsp; Some models, however just do not work regardless.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 20:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400915#M4779</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-24T20:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400916#M4780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had finally time to check it today and I can see what you are seeing. I sent it to my colleague that knows more about 3d than I do. Hopefully he can figure it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 15:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400916#M4780</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-08-25T15:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400917#M4781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent, thanks for your assistance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 18:53:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400917#M4781</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-25T18:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400918#M4782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My colleague Antti forwarded me your question. To display textures, you need following steps-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Create a folder name DHCChipmunk inside Data/Models/Chips3ds (same location where your .3DS file exists).&lt;/P&gt;&lt;P&gt;2) Move all jpegs to DHCChipmunk folder&lt;/P&gt;&lt;P&gt;3) Rename your .3ds file to same name as folder (DHCChipmunk.3ds)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should now see the textures. The idea is that the JPEGs should reside in a folder named same as the .3ds or .dae file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you have any questions.&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;Apurva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 17:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400918#M4782</guid>
      <dc:creator>ApurvaGoyal</dc:creator>
      <dc:date>2015-08-26T17:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Does anyone have a good ModelMarkerSymbol example with a 3ds model?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400919#M4783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apurva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your suggestions.&amp;nbsp; I have updated my example with a selection of models implementing your method.&amp;nbsp; I have had limited success.&amp;nbsp; I have zipped up my latest test application but it is too large to upload to the forum.&amp;nbsp; Is there and email address I could send it to so you could take a look at it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phil Collier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 19:57:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/does-anyone-have-a-good-modelmarkersymbol-example/m-p/400919#M4783</guid>
      <dc:creator>PhilipCollier</dc:creator>
      <dc:date>2015-08-27T19:57:03Z</dc:date>
    </item>
  </channel>
</rss>

