spark/common/src/main/java/org/apache/sedona/viz/extension/visualizationEffect/ChoroplethMap.java [136:156]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public ChoroplethMap(
      int resolutionX,
      int resolutionY,
      Envelope datasetBoundary,
      boolean reverseSpatialCoordinate,
      int partitionX,
      int partitionY,
      boolean parallelRenderImage,
      boolean generateVectorImage) {
    super(
        resolutionX,
        resolutionY,
        datasetBoundary,
        ColorizeOption.NORMAL,
        reverseSpatialCoordinate,
        partitionX,
        partitionY,
        false,
        parallelRenderImage,
        generateVectorImage);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spark/common/src/main/java/org/apache/sedona/viz/extension/visualizationEffect/ScatterPlot.java [102:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public ScatterPlot(
      int resolutionX,
      int resolutionY,
      Envelope datasetBoundary,
      boolean reverseSpatialCoordinate,
      int partitionX,
      int partitionY,
      boolean parallelRenderImage,
      boolean generateVectorImage) {
    super(
        resolutionX,
        resolutionY,
        datasetBoundary,
        ColorizeOption.NORMAL,
        reverseSpatialCoordinate,
        partitionX,
        partitionY,
        false,
        parallelRenderImage,
        generateVectorImage);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



