Code Monkey home page Code Monkey logo

Comments (1)

thor-schueler avatar thor-schueler commented on August 10, 2024

Yes, that is certainly possible. IconInfo will change the image for an individual marker, ClusterIconInfo for a cluster. Take a look at the sample page, it has samples for custom marker images. Take a look at https://github.com/infusion-code/angular-maps/blob/master/src/components/cluster-layer.ts also, it show how to dynamically create an SVG cluster icon based on the data (for the dynamic stock marker images) (CreateDynamicSizeMarker)

To use custom cluster SVG, you have to implement a callback and set it in x-cluster-layer CustomMarkerCallback. The callback is (m: Array, i: IMarkerIconInfo) => string. This will be called for each cluster and the arguments are an array with the markers in the cluster and the MarkerIconInfo that you have set using the IconInfo property. You can use this method to generate arbitrary svg based on the data passed in (I am usually using this to to pie chart clusters or similar). The return value of the callback should be either an SVG string or a data: string for an image, either way.

If you do not need icons that change depending on the content of the cluster, you can just provide the SVG string in the url property of the IconInfo, specify MarkerTypeId.RotatedImageMarker and use IconInfo.rotation = 0. I've not tried this, but it should work. The logic for creating a marker can be found in https://github.com/infusion-code/angular-maps/blob/master/src/models/marker.ts

Hope that helps. Let me know...

from angular-maps.

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.