Last active
October 30, 2020 13:32
-
-
Save MichaelBelousov/75288fbea51f82ea7314791d190d6553 to your computer and use it in GitHub Desktop.
introducing imodel react hooks useMarker sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from "react"; | |
import { Point3d } from "@bentley/geometry-core"; | |
import { useMarker } from "@bentley/imodel-react-hooks"; | |
const MyJsxMarker = (props: { worldLocation: Point3d }) => { | |
const [isHovered, setIsHovered] = useState(false); | |
useMarker({ | |
worldLocation: props.worldLocation, | |
size: [70, 20], | |
onMouseEnter: () => setIsHovered(true), | |
onMouseLeave: () => setIsHovered(false), | |
jsxElement: <div> {isHovered ? "HELL YEAH >:D" : "not hovered"} </div>, | |
}); | |
return null; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment