I used the example given in this post ( Displaying Points And Drilldown Data in Highmaps ) it works fine if you have a drilldown series with a single point but if you have more then one
tempSeries = chart.addSeries({
id: 'points',
type: 'mappoint',
name: 'Store Data',
color: Highcharts.getOptions().colors[8],
data: [{
name: 'Point 1',
lat: 40.0633,
lon: -88.2498
},{
name: 'New York',
lat: 40.730610,
lon: -73.935242
}
]
});
see my updated JSFiddle when you click on Illinois you will get New York point with it.
is it possible to display only the points in the same state (when you click on Illinois you get only Illinois points)?