Hello.
How i can draw map with population density ? Standart colors start from blue, but i need from yellow to the red.
HeatLayer heatLayer = new HeatLayer(inMemoryFeatureLayer.FeatureSource);
HeatStyle heatStyle = new HeatStyle();
heatStyle.IntensityColumnName = "COUNT";
heatStyle.IntensityRangeStart = ?
heatStyle.IntensityRangeEnd = ?
heatStyle.Alpha = 180;
heatStyle.PointRadius = 10;
heatStyle.PointRadiusUnit = DistanceUnit.NauticalMile;
heatStyle.PointIntensity = ?
heatStyle.ColorPalette - ?
And i have problem with projection, see this on attachments
ManagedProj4Projection proj4 = new ManagedProj4Projection();
proj4.InternalProjectionParametersString = ManagedProj4Projection.GetEpsgParametersString(4326);
proj4.ExternalProjectionParametersString = ManagedProj4Projection.GetSphericalMercatorParametersString();