Google 지도에서 사용자 정의 InfoWindows 만들기
지도 마커를 클릭하면 나타나는 기본 Google 지도 InfoWindow에는 둥근 모서리가 있는 경우가 많습니다. 그러나 사각형 모서리가 있는 좀 더 사용자 정의된 InfoWindow를 원할 수도 있습니다. 이 문서에서는 이러한 사용자 정의를 수행하는 방법에 대한 지침을 제공합니다.
JavaScript 라이브러리 사용
외부 JavaScript 라이브러리는 사용자 정의 InfoWindows를 생성하기 위한 강력한 솔루션을 제공합니다. 인기 있는 옵션 중 하나는 Google Maps Info Bubble 라이브러리입니다. 이를 통해 특정 요구 사항에 맞게 InfoWindows의 모양, 모양 및 콘텐츠를 수정할 수 있습니다.
구현 예
다음 코드 조각은 사용자 정의를 구현하는 방법을 보여줍니다. Info Bubble 라이브러리를 사용하는 InfoWindow:
<code class="js">const infoBubble = new google.maps.InfoWindowBubble({ maxWidth: 300, // Maximum width of the InfoWindow maxHeight: 200, // Maximum height of the InfoWindow arrowPosition: 50, // Offset of the arrow from the center of the InfoWindow padding: 10, // Padding around the content of the InfoWindow borderWidth: 1, // Border width around the InfoWindow borderColor: "#000000", // Border color of the InfoWindow backgroundColor: "#FFFFFF", // Background color of the InfoWindow hideCloseButton: true, // Hide the close button on the InfoWindow borderRadius: 0, // Set the border radius to 0 for square corners }); // Attach the custom InfoWindow to a map marker const marker = new google.maps.Marker({ position: { lat: 0, lng: 0, }, map, }); marker.addListener("click", () => { infoBubble.setContent("This is a custom InfoWindow."); infoBubble.open(map, marker); });</code>
이 예에서는 최대 크기가 너비 300px, 높이 200px인 정사각형 모서리 InfoWindow를 만듭니다. 검은색 테두리, 흰색 배경이 있고 닫기 버튼이 보이지 않습니다.
대안
Info Bubble 라이브러리가 귀하의 요구 사항을 충족하지 않는 경우 다음과 같은 다른 옵션 탐색을 고려하십시오. MarkerClusterer 라이브러리 또는 DataLayer 라이브러리로 사용됩니다. 둘 다 InfoWindows를 사용자 정의하고 Google 지도 경험을 향상시키기 위한 유연한 솔루션을 제공합니다.
위 내용은 Google 지도에서 정사각형 모서리가 있는 사용자 정의 InfoWindows를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!