Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ysapiyev
Responsive Resident
Responsive Resident

Change zoom by click

Hi everyone, I have custom visual with map and circles on it. 

I want to use on('click') to change zoom, however, setview method from leaflet doesn't work.

 

const circle = g.append('circle')
                        .style("opacity", 0) 
                        .attr("r", outerRadius)
                        .attr("pointer-events","visible")
                        .attr('transform',"translate("+ map.latLngToLayerPoint(dpt.latlng as any).x +","+ map.latLngToLayerPoint(dpt.latlng as any).y +")");
                    
circle..on('click', function() {
                            //map.setView([map.latLngToLayerPoint(dpt.latlng as any).x, map.latLngToLayerPoint(dpt.latlng as any).y], this.iZoom);
                            //map.setView(circle.getLatLng(), 16);
                            this.drill_down(map.getZoom());
                            d3.selectAll('foreignObject').remove(); 
                        });
private drill_down(mapZoom: number, options: VisualUpdateOptions): void {
            
            if(mapZoom < +Visual.h2Zoom) { 
                let data_1 = Visual.dataForMap(mapZoom, options);
                let ov_lat = 0;
                let count_lat = 0;
                let ov_lng = 0;
                let count_lng = 0;
                data_1.forEach(function(d) {
                   ov_lat =+ d.lat;
                   count_lat++;
                   ov_lng =+ d.lng;
                   count_lng++;
                })
                let av_lat = ov_lat/count_lat;
                let av_lng = ov_lng/count_lng;

                this.map.setView([av_lat, av_lng], +Visual.h2Zoom);
            }};

What can be the problem?

 

Regards,

Yerkhan

1 ACCEPTED SOLUTION
ysapiyev
Responsive Resident
Responsive Resident

Solved by proper usage of d3 functions for leaflet map.

View solution in original post

1 REPLY 1
ysapiyev
Responsive Resident
Responsive Resident

Solved by proper usage of d3 functions for leaflet map.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.