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



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



