default: {
    GEO_PROPS: {
        hover: {
            enter: {
                props: {
                    style: {
                        fill: string;
                        outline: string;
                    };
                };
            };
        };
    };
    MARKERS: {
        coordinates: Coord;
        id: string;
        label: {
            style: {
                stroke: string;
            };
            text: string;
        };
        props: {
            hover: {
                enter: {
                    props: {
                        style: {
                            opacity: number;
                        };
                    };
                };
            };
        };
    }[];
    VIEW_PROPS: {
        view: {
            dimensions: Point;
            fetchToTarget: boolean;
            scale: number;
            target: null | HTMLElement;
        };
    };
}

Type declaration

  • GEO_PROPS: {
        hover: {
            enter: {
                props: {
                    style: {
                        fill: string;
                        outline: string;
                    };
                };
            };
        };
    }
    • hover: {
          enter: {
              props: {
                  style: {
                      fill: string;
                      outline: string;
                  };
              };
          };
      }
      • enter: {
            props: {
                style: {
                    fill: string;
                    outline: string;
                };
            };
        }
        • props: {
              style: {
                  fill: string;
                  outline: string;
              };
          }
          • style: {
                fill: string;
                outline: string;
            }
            • fill: string
            • outline: string
  • MARKERS: {
        coordinates: Coord;
        id: string;
        label: {
            style: {
                stroke: string;
            };
            text: string;
        };
        props: {
            hover: {
                enter: {
                    props: {
                        style: {
                            opacity: number;
                        };
                    };
                };
            };
        };
    }[]
  • VIEW_PROPS: {
        view: {
            dimensions: Point;
            fetchToTarget: boolean;
            scale: number;
            target: null | HTMLElement;
        };
    }
    • view: {
          dimensions: Point;
          fetchToTarget: boolean;
          scale: number;
          target: null | HTMLElement;
      }
      • dimensions: Point
      • fetchToTarget: boolean
      • scale: number
      • target: null | HTMLElement

Generated using TypeDoc