Skip to content

Instantly share code, notes, and snippets.

@MichaelBelousov
Last active October 30, 2020 13:32
Show Gist options
  • Save MichaelBelousov/75288fbea51f82ea7314791d190d6553 to your computer and use it in GitHub Desktop.
Save MichaelBelousov/75288fbea51f82ea7314791d190d6553 to your computer and use it in GitHub Desktop.
introducing imodel react hooks useMarker sample
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