<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>mvcmaps Issue Tracker Rss Feed</title><link>http://mvcmaps.codeplex.com/WorkItem/List.aspx</link><description>mvcmaps Issue Tracker Rss Description</description><item><title>Commented Issue: Ambiguous match found. [10669]</title><link>http://mvcmaps.codeplex.com/workitem/10669</link><description>I am getting an error in WebUtils.cs  file in below mentioned code when I am trying to run the application.&lt;br /&gt;&lt;br /&gt;Error Message &amp;#58;- Ambiguous match found&lt;br /&gt;Line &amp;#58;-  _getWebResourceUrlMethod &amp;#61; typeof&amp;#40;System.Web.Handlers.AssemblyResourceLoader&amp;#41;.GetMethod&amp;#40;&lt;br /&gt;                            &amp;#34;GetWebResourceUrlInternal&amp;#34;,&lt;br /&gt;                            BindingFlags.NonPublic &amp;#124; BindingFlags.Static&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;please refer the attached img.&lt;br /&gt;&lt;br /&gt;Thanks in Advance&lt;br /&gt;Comments: ** Comment from web user: yaqubonnet ** &lt;p&gt;I am experiencing the same issue.&lt;/p&gt;</description><author>yaqubonnet</author><pubDate>Thu, 14 Mar 2013 09:42:13 GMT</pubDate><guid isPermaLink="false">Commented Issue: Ambiguous match found. [10669] 20130314094213A</guid></item><item><title>Created Issue: Ambiguous match found. [10669]</title><link>http://mvcmaps.codeplex.com/workitem/10669</link><description>I am getting an error in WebUtils.cs  file in below mentioned code when I am trying to run the application.&lt;br /&gt;&lt;br /&gt;Error Message &amp;#58;- Ambiguous match found&lt;br /&gt;Line &amp;#58;-  _getWebResourceUrlMethod &amp;#61; typeof&amp;#40;System.Web.Handlers.AssemblyResourceLoader&amp;#41;.GetMethod&amp;#40;&lt;br /&gt;                            &amp;#38;quot&amp;#59;GetWebResourceUrlInternal&amp;#38;quot&amp;#59;,&lt;br /&gt;                            BindingFlags.NonPublic &amp;#124; BindingFlags.Static&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;please refer the attached img.&lt;br /&gt;&lt;br /&gt;Thanks in Advance&lt;br /&gt;</description><author>moinsiddiqui</author><pubDate>Mon, 17 Dec 2012 10:58:59 GMT</pubDate><guid isPermaLink="false">Created Issue: Ambiguous match found. [10669] 20121217105859A</guid></item><item><title>Created Issue: Maps don't paint the pushpin when i load a model with a property as a IEnumerable&lt;Pushpin&gt; [9725]</title><link>http://mvcmaps.codeplex.com/workitem/9725</link><description>I render my map this way&amp;#58;&lt;br /&gt;&lt;br /&gt;Html.RenderPartial&amp;#40;&amp;#34;MapDisplay&amp;#34;, new ViewDataDictionary&amp;#40;&amp;#41;&lt;br /&gt;                                                                 &amp;#123;&lt;br /&gt;                                                                     &amp;#123;&lt;br /&gt;                                                                         &amp;#34;Bing&amp;#34;, Ajax.BingMap&amp;#40;&amp;#41;&lt;br /&gt;                                                                         .CssClass&amp;#40;&amp;#34;BingMap&amp;#34;&amp;#41;&lt;br /&gt;                                                                         .AddPushpin&amp;#40;Model.Positions&amp;#41;&lt;br /&gt;                                                                         &amp;#125;&lt;br /&gt;                                                                 &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;And &amp;#34;Model.Positions&amp;#34; is a &amp;#34;public IEnumerable&amp;#60;Pushpin&amp;#62; Positions &amp;#123; get&amp;#59; set&amp;#59; &amp;#125;&amp;#34; propertie from the model...&lt;br /&gt;&lt;br /&gt;What can i do to show a pushpin list&amp;#63;  Exist another way to do that&amp;#63;  Anybody can help me&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks people&amp;#33;&lt;br /&gt;</description><author>Mocolete</author><pubDate>Fri, 16 Dec 2011 16:38:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Maps don't paint the pushpin when i load a model with a property as a IEnumerable&lt;Pushpin&gt; [9725] 20111216043844P</guid></item><item><title>Created Issue: LatLng needs a default constructor to work properly with LINQ [8613]</title><link>http://mvcmaps.codeplex.com/workitem/8613</link><description>I&amp;#39;ve been trying to run the following LINQ query to convert a collection of geocoded addresses into Pushpins&amp;#58;&lt;br /&gt;&lt;br /&gt;var contacts &amp;#61; _contactRepository&lt;br /&gt;    .All&lt;br /&gt;    .Where&amp;#40;contact &amp;#61;&amp;#62;&lt;br /&gt;        contact.HomeAddress.Longitude &amp;#62;&amp;#61; minLng &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Longitude &amp;#60;&amp;#61; maxLng &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Latitude &amp;#62;&amp;#61; minLat &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Latitude &amp;#60;&amp;#61; maxLat&amp;#41;&lt;br /&gt;    .Select&amp;#40;contact &amp;#61;&amp;#62; new Pushpin&amp;#40;contact.HomeAddress.Latitude, contact.HomeAddress.Longitude&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;return new MapDataResult &amp;#123; Pushpins &amp;#61; contacts &amp;#125;&amp;#59;&lt;br /&gt;&lt;br /&gt;but the query fails because the .Select part of the query will only work when the objects being constructed have a default constructor, and LatLng lacks a default constructor, so the following code will also fail&amp;#58;&lt;br /&gt;&lt;br /&gt;var contacts &amp;#61; _contactRepository&lt;br /&gt;    .All&lt;br /&gt;    .Where&amp;#40;contact &amp;#61;&amp;#62;&lt;br /&gt;        contact.HomeAddress.Longitude &amp;#62;&amp;#61; minLng &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Longitude &amp;#60;&amp;#61; maxLng &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Latitude &amp;#62;&amp;#61; minLat &amp;#38;&amp;#38;&lt;br /&gt;        contact.HomeAddress.Latitude &amp;#60;&amp;#61; maxLat&amp;#41;&lt;br /&gt;    .Select&amp;#40;contact &amp;#61;&amp;#62; new Pushpin&amp;#123; Position &amp;#61; new LatLng&amp;#40;contact.HomeAddress.Latitude, contact.HomeAddress.Longitude&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;return new MapDataResult &amp;#123; Pushpins &amp;#61; contacts &amp;#125;&amp;#59;&lt;br /&gt;&lt;br /&gt;The workaround is to split up the single LINQ query, and have the creation of the Pushpin collection inside a regular foreach loop, where we can use the constructor overloads as we like&amp;#59; but it would still nice to be able to do it in a single LINQ query&amp;#59; hence, please could you add a default constructor to LatLng&amp;#63;&amp;#33;&lt;br /&gt;</description><author>CtrlAltDel</author><pubDate>Fri, 13 May 2011 07:09:40 GMT</pubDate><guid isPermaLink="false">Created Issue: LatLng needs a default constructor to work properly with LINQ [8613] 20110513070940A</guid></item><item><title>Commented Issue: jQuery 1.4.2 incompatible [5895]</title><link>http://mvcmaps.codeplex.com/workitem/5895</link><description>Hello&amp;#33;  I just want to say thanks for the excellent project.  &lt;br /&gt;&lt;br /&gt;I am running into a small problem with the dynamic maps not working when I use jquery 1.4.2 instead of jquery 1.3.2 as in the example.  Are there any workarounds to make this work with the latest version of jquery&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;br /&gt;Victor&lt;br /&gt;Comments: ** Comment from web user: CtrlAltDel ** &lt;p&gt;The workaround as suggested by dskwarek above is to change the JsonObjectBuilder to enclose the keys with quotes &amp;#40;line 161 in r60450&amp;#41;&amp;#58;&lt;/p&gt;&lt;p&gt;sb.Append&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#92;&amp;#34;&amp;#123;0&amp;#125;&amp;#92;&amp;#34;&amp;#58;&amp;#123;1&amp;#125;&amp;#34;, val.Key, strVal&amp;#41;&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;This change works for me, still using jQuery 1.4.2. The code already takes care of properly enclosing the values with quotes.&lt;/p&gt;</description><author>CtrlAltDel</author><pubDate>Tue, 10 May 2011 06:49:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: jQuery 1.4.2 incompatible [5895] 20110510064940A</guid></item><item><title>Commented Issue: Error: 'MvcMaps' is undefined [7746]</title><link>http://mvcmaps.codeplex.com/workitem/7746</link><description>i&amp;#39;m trying to use MvcMaps in my project but this error appear in the page&lt;br /&gt;when i debug this error i found this line&lt;br /&gt;var B3836484 &amp;#61; null&amp;#59;&amp;#36;&amp;#40;function&amp;#40;&amp;#41;&amp;#123;B3836484&amp;#61;new MvcMaps.BingMap&amp;#40;&amp;#39;divB3836484&amp;#39;,&amp;#123;id&amp;#58;&amp;#39;B3836484&amp;#39;&amp;#125;&amp;#41;&amp;#59;&amp;#125;&amp;#41;&amp;#59;&amp;#60;&amp;#47;script&amp;#62;&lt;br /&gt;&lt;br /&gt;i&amp;#39;m using jquery 1.4.1.1 and .net frame work 3.5 with mvc2&lt;br /&gt;i test all that setting in an empty project it worked&lt;br /&gt;but in my project won&amp;#39;t work&lt;br /&gt;Comments: ** Comment from web user: wajhi ** &lt;p&gt;I faced a similar issue. it could be case the resource javascript files are not getting loaded properly. you need to check the included in html. to fix the issue you just need to  update the following line WebUtils.cs file   return  &amp;#34;&amp;#47;&amp;#34; &amp;#43; &amp;#40;string&amp;#41;_getWebResourceUrlMethod.Invoke&amp;#40;null,&lt;br /&gt;                new object&amp;#91;&amp;#93; &amp;#123; Assembly.GetAssembly&amp;#40;typeof&amp;#40;T&amp;#41;&amp;#41;, resourceName, false, false, null &amp;#125;&amp;#41;&amp;#59; I post fixed a &amp;#34;&amp;#47;&amp;#34; before resource and it worked. &lt;/p&gt;</description><author>wajhi</author><pubDate>Wed, 13 Apr 2011 09:03:43 GMT</pubDate><guid isPermaLink="false">Commented Issue: Error: 'MvcMaps' is undefined [7746] 20110413090343A</guid></item><item><title>Created Issue: Error: 'MvcMaps' is undefined [7746]</title><link>http://mvcmaps.codeplex.com/workitem/7746</link><description>i&amp;#39;m trying to use MvcMaps in my project but this error appear in the page&lt;br /&gt;when i debug this error i found this line&lt;br /&gt;var B3836484 &amp;#61; null&amp;#59;&amp;#36;&amp;#40;function&amp;#40;&amp;#41;&amp;#123;B3836484&amp;#61;new MvcMaps.BingMap&amp;#40;&amp;#39;divB3836484&amp;#39;,&amp;#123;id&amp;#58;&amp;#39;B3836484&amp;#39;&amp;#125;&amp;#41;&amp;#59;&amp;#125;&amp;#41;&amp;#59;&amp;#60;&amp;#47;script&amp;#62;&lt;br /&gt;&lt;br /&gt;i&amp;#39;m using jquery 1.4.1.1 and .net frame work 3.5 with mvc2&lt;br /&gt;i test all that setting in an empty project it worked&lt;br /&gt;but in my project won&amp;#39;t work&lt;br /&gt;</description><author>eng_Khalid</author><pubDate>Thu, 09 Dec 2010 10:40:15 GMT</pubDate><guid isPermaLink="false">Created Issue: Error: 'MvcMaps' is undefined [7746] 20101209104015A</guid></item><item><title>Created Issue: Add Map Factory to use for loading "default" Map Provider [7691]</title><link>http://mvcmaps.codeplex.com/workitem/7691</link><description>Add Map Factory to use for loading &amp;#34;default&amp;#34; Map Provider&lt;br /&gt;&lt;br /&gt;This will allow for custom logic to be used to determine what Map provider to use, instead of solely using what is defined in the web.config. &lt;br /&gt;&lt;br /&gt;Example Usage&amp;#58; determine if Silverlight is supported and use Bing Maps Silverlight otherwise use Bing Maps Ajax instead.&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Tue, 30 Nov 2010 18:14:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Map Factory to use for loading "default" Map Provider [7691] 20101130061444P</guid></item><item><title>Created Issue: Add Support for Bing Maps Silverlight [7690]</title><link>http://mvcmaps.codeplex.com/workitem/7690</link><description>Add Support for Bing Maps Silverlight&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Tue, 30 Nov 2010 18:12:54 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Support for Bing Maps Silverlight [7690] 20101130061254P</guid></item><item><title>Created Issue: Add Support for OpenStreetMaps via OpenLayers [7689]</title><link>http://mvcmaps.codeplex.com/workitem/7689</link><description>Add Support for OpenStreetMaps&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;openstreetmap.org&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;openlayers.org&amp;#47;&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Tue, 30 Nov 2010 18:12:33 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Support for OpenStreetMaps via OpenLayers [7689] 20101130061233P</guid></item><item><title>Created Issue: Add Support for Google Maps 3 [7688]</title><link>http://mvcmaps.codeplex.com/workitem/7688</link><description>Add Support for Google Maps 3&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Tue, 30 Nov 2010 18:10:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Support for Google Maps 3 [7688] 20101130061044P</guid></item><item><title>Created Issue: Add Support for Bing Maps v7 [7687]</title><link>http://mvcmaps.codeplex.com/workitem/7687</link><description>Add Support for Bing Maps v7&lt;br /&gt;</description><author>crpietschmann</author><pubDate>Tue, 30 Nov 2010 18:09:46 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Support for Bing Maps v7 [7687] 20101130060946P</guid></item><item><title>Commented Issue: jQuery 1.4.2 incompatible [5895]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=5895</link><description>Hello&amp;#33;  I just want to say thanks for the excellent project.  &lt;br /&gt;&lt;br /&gt;I am running into a small problem with the dynamic maps not working when I use jquery 1.4.2 instead of jquery 1.3.2 as in the example.  Are there any workarounds to make this work with the latest version of jquery&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;br /&gt;Victor&lt;br /&gt;Comments: ** Comment from web user: dskwarek ** &lt;p&gt;The problem is related to the json. Json keys MUST be inside quotes.&lt;/p&gt;&lt;p&gt;http&amp;#58;&amp;#47;&amp;#47;api.jquery.com&amp;#47;jQuery.post&amp;#47;&lt;br /&gt;&amp;#34;Actually &amp;#36;.post works perfectly in all cases, if you respect 2 rules&amp;#58;&lt;br /&gt;- from PHP, Python or whatever the returned content-type MUST be application&amp;#47;json&lt;br /&gt;- the JSON must be valid according to the JSON specification&amp;#58;&lt;br /&gt;&amp;#123;&amp;#34;key1&amp;#34;&amp;#58;&amp;#34;val1&amp;#34;,&amp;#34;key2&amp;#34;&amp;#58;&amp;#34;val2&amp;#34;&amp;#125;&lt;br /&gt;You can skip the quotes with integer values, but keys and string values MUST be inside quotes. Construct valid in Javascript are not automatically valid in JSON.&amp;#34;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;I added quotes to all json keys and now I&amp;#39;m using MvcMaps with jQuery 1.4.2.&lt;br /&gt;It&amp;#39;s great library. I hope you will continue to add some new features and maybe support for Google Maps V3.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><author>dskwarek</author><pubDate>Mon, 31 May 2010 20:31:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: jQuery 1.4.2 incompatible [5895] 20100531083140P</guid></item><item><title>Commented Issue: jQuery 1.4.2 incompatible [5895]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=5895</link><description>Hello&amp;#33;  I just want to say thanks for the excellent project.  &lt;br /&gt;&lt;br /&gt;I am running into a small problem with the dynamic maps not working when I use jquery 1.4.2 instead of jquery 1.3.2 as in the example.  Are there any workarounds to make this work with the latest version of jquery&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;br /&gt;Victor&lt;br /&gt;Comments: ** Comment from web user: VictorFoster ** &lt;p&gt;The workaround for this issue right now is to either use jquery 1.3.2 or use the jquery.compat-1.3.js file with jquery 1.4.2.  The error probably relates to malformed json of which jquery 1.4.2 does not allow.   &lt;/p&gt;</description><author>VictorFoster</author><pubDate>Mon, 03 May 2010 07:50:24 GMT</pubDate><guid isPermaLink="false">Commented Issue: jQuery 1.4.2 incompatible [5895] 20100503075024A</guid></item><item><title>Created Issue: jQuery 1.4.2 incompatible [5895]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=5895</link><description>Hello&amp;#33;  I just want to say thanks for the excellent project.  &lt;br /&gt;&lt;br /&gt;I am running into a small problem with the dynamic maps not working when I use jquery 1.4.2 instead of jquery 1.3.2 as in the example.  Are there any workarounds to make this work with the latest version of jquery&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;br /&gt;Victor&lt;br /&gt;</description><author>VictorFoster</author><pubDate>Wed, 28 Apr 2010 06:24:32 GMT</pubDate><guid isPermaLink="false">Created Issue: jQuery 1.4.2 incompatible [5895] 20100428062432A</guid></item><item><title>Created Issue: Won't Work In Sub Directory [5597]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=5597</link><description>I had to make a change to WebUtils.cs to get this to work in a sub directory set as a application.&lt;br /&gt;&lt;br /&gt;In WebUtils.GetWebResourceUrl&amp;#40;...&amp;#41; change the return to&lt;br /&gt;&lt;br /&gt;var root &amp;#61; VirtualPathUtility.ToAbsolute&amp;#40;&amp;#34;&amp;#126;&amp;#47;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;return root &amp;#43; &amp;#40;string&amp;#41;_getWebResourceUrlMethod.Invoke&amp;#40;null,&lt;br /&gt;  new object&amp;#91;&amp;#93; &amp;#123; Assembly.GetAssembly&amp;#40;typeof&amp;#40;T&amp;#41;&amp;#41;, resourceName, false &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>mxmissile</author><pubDate>Mon, 22 Mar 2010 17:23:04 GMT</pubDate><guid isPermaLink="false">Created Issue: Won't Work In Sub Directory [5597] 20100322052304P</guid></item><item><title>Commented Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=4774</link><description>If you set the globalization culture of the web application to one which uses &amp;#39;comma&amp;#39; as a decimal separator, the JS code gets rendered incorrectly for numeric values.&lt;br /&gt;&lt;br /&gt;To reproduce the error, add &amp;#60;globalization culture&amp;#61;&amp;#34;es-AR&amp;#34; &amp;#47;&amp;#62; to the web.config and open the home page of the InteractiveSDKwebsite.&lt;br /&gt;&lt;br /&gt;I believe the problem can be solved by updating the Render method of the JsonObjectBuilder class.&lt;br /&gt;&lt;br /&gt;Thanks for the great app. Hope this helps.&lt;br /&gt;Comments: ** Comment from web user: bckspc ** &lt;p&gt;Fix update&amp;#58; I&amp;#39;ve realized that I only corrected the problem for the center of the map. To correct the culture problem also to the pushpins you have to&amp;#58;&lt;/p&gt;&lt;p&gt;In file LatLng.cs change the function&amp;#58;&lt;/p&gt;&lt;p&gt;        internal virtual JsonObjectBuilder ToJsonObjectBuilder&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var json &amp;#61; new JsonObjectBuilder&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            json.Append&amp;#40;&amp;#34;lat&amp;#34;, this.Latitude.ToString&amp;#40;System.Globalization.CultureInfo.InvariantCulture&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            json.Append&amp;#40;&amp;#34;lng&amp;#34;, this.Longitude.ToString&amp;#40;System.Globalization.CultureInfo.InvariantCulture&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            return json&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;/p&gt;</description><author>bckspc</author><pubDate>Sun, 24 Jan 2010 22:08:58 GMT</pubDate><guid isPermaLink="false">Commented Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774] 20100124100858P</guid></item><item><title>Commented Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=4774</link><description>If you set the globalization culture of the web application to one which uses &amp;#39;comma&amp;#39; as a decimal separator, the JS code gets rendered incorrectly for numeric values.&lt;br /&gt;&lt;br /&gt;To reproduce the error, add &amp;#60;globalization culture&amp;#61;&amp;#34;es-AR&amp;#34; &amp;#47;&amp;#62; to the web.config and open the home page of the InteractiveSDKwebsite.&lt;br /&gt;&lt;br /&gt;I believe the problem can be solved by updating the Render method of the JsonObjectBuilder class.&lt;br /&gt;&lt;br /&gt;Thanks for the great app. Hope this helps.&lt;br /&gt;Comments: ** Comment from web user: bckspc ** &lt;p&gt;Same problem here. I&amp;#39;m in Portugal and JSON also defaults decimal to comma.&lt;/p&gt;&lt;p&gt;I realized that for me, the problem only occured in lat and long variables so I made a temporary fix to use the maps using ToString with InvariantCulture.&lt;/p&gt;&lt;p&gt;On the file Map.cs, on the function RenderObjectInitializer I made&amp;#58;&lt;/p&gt;&lt;p&gt;&amp;#34;           &lt;br /&gt;if &amp;#40;this.CenterLatitude.HasValue &amp;#38;&amp;#38; this.CenterLongitude.HasValue&amp;#41; &amp;#123;&lt;br /&gt;    json.Append&amp;#40;&amp;#34;lat&amp;#34;, this.CenterLatitude.Value.ToString&amp;#40;CultureInfo.InvariantCulture&amp;#41;&amp;#41;.Append&amp;#40;&amp;#34;lng&amp;#34;, this.CenterLongitude.Value.ToString&amp;#40;CultureInfo.InvariantCulture&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;</description><author>bckspc</author><pubDate>Sun, 24 Jan 2010 14:13:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774] 20100124021330P</guid></item><item><title>Created Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774]</title><link>http://mvcmaps.codeplex.com/WorkItem/View.aspx?WorkItemId=4774</link><description>If you set the globalization culture of the web application to one which uses &amp;#39;comma&amp;#39; as a decimal separator, the JS code gets rendered incorrectly for numeric values.&lt;br /&gt;&lt;br /&gt;To reproduce the error, add &amp;#60;globalization culture&amp;#61;&amp;#34;es-AR&amp;#34; &amp;#47;&amp;#62; to the web.config and open the home page of the InteractiveSDKwebsite.&lt;br /&gt;&lt;br /&gt;I believe the problem can be solved by updating the Render method of the JsonObjectBuilder class.&lt;br /&gt;&lt;br /&gt;Thanks for the great app. Hope this helps.&lt;br /&gt;</description><author>scarmuega</author><pubDate>Sat, 07 Nov 2009 22:18:03 GMT</pubDate><guid isPermaLink="false">Created Issue: Maps don't load when globalization culture uses 'comma' as decimal separator [4774] 20091107101803P</guid></item></channel></rss>