Giter VIP home page Giter VIP logo

Comments (6)

robertjf avatar robertjf commented on August 30, 2024

@jonas-jaderberg the Zoom property being a string is a legacy issue - I'm not sure why it's causing problems when you serialise though? can you demonstrate with a code sample perhaps?

from our.umbraco.gmaps.

jonas-jaderberg avatar jonas-jaderberg commented on August 30, 2024

@robertjf here is some sample code which I use when I import data that I have geocoded. It also include that hack I do to fix the problem.

      Our.Umbraco.GMaps.Models.Map gmap = new Map();
      gmap.Address = new Address();
      gmap.Address.Coordinates = new Location();
      gmap.Address.Coordinates.Latitude = r.Results[0].Geometry.Location.Lat;
      gmap.Address.Coordinates.Longitude = r.Results[0].Geometry.Location.Lng;

      gmap.MapConfig = new MapConfig();
      gmap.MapConfig.Zoom = "15";

      string json = JsonConvert.SerializeObject(gmap);
   
      //Hack to get zoom to an int. Probably bug that's a string in model.
      //If a string the map won't show up and there is an error saying that zoom is not an int.
      json = json.Replace("\"zoom\":\"15\"", "\"zoom\":15");

      d.SetValue("Position", json);

The problem is the in the model it's a string but in the json it has to be a int.

from our.umbraco.gmaps.

robertjf avatar robertjf commented on August 30, 2024

@jonas-jaderberg can you explain where the error shows up? Do you get it when trying to set the value, read it out, or when rendering the map in the Umbraco BackOffice? Is it a JavaScript error or C#?

from our.umbraco.gmaps.

robertjf avatar robertjf commented on August 30, 2024

@jonas-jaderberg I've relented and made Zoom an int 😅 - version bumped to 2.1.0 as this is a potential breaking change. I've also fixed the controller so it can automatically convert from string to number in legacy data.

from our.umbraco.gmaps.

jonas-jaderberg avatar jonas-jaderberg commented on August 30, 2024

Tested 2.1.0 and it worked, great!

from our.umbraco.gmaps.

Ambertvu avatar Ambertvu commented on August 30, 2024

@robertjf could you also set a default zoom level when using legacy data?

I have to look into it a bit deeper what the exact problem is and if I can fix it, but since the upgrade it breaks for me (legacy v8 upgraded to v11) with the error:

JsonSerializationException: Error converting value {null} to type 'System.Int32'. Path 'mapconfig.zoom', line 1, position 224.
Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType(JsonReader reader, object value, CultureInfo culture, JsonContract contract, Type targetType)

Could make a new issues if needed

from our.umbraco.gmaps.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.