Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1255
What happened to the IgbGeographicSymbolSeries MarkerTemplateScript
posted

I upgraded my 21.1 blazor nuget files to 21.2 today.  I have many type of maps that use custom markers built in Javascript files.  They work perfectly in 21.1, however they never get called in 21.2.

These are extremely important to our maps.  What do I need to do to get these marker templates to work again.  I reference the script as follows

<IgbGeographicSymbolSeries DataSource="@series.GeoSeriesData"
                                        MarkerType="MarkerType.Circle"
                                        LatitudeMemberPath="Lat"
                                        LongitudeMemberPath="Lon"
                                        MarkerTemplateScript="wellSymbolTemplate"   />

and I register the template with

igRegisterScript("wellSymbolTemplate", wellSymbolTemplate, true);