package com.airbnb.android.airmapview; public class GoogleChinaWebViewMapFragment extends GoogleWebViewMapFragment { public static GoogleChinaWebViewMapFragment newInstance(AirMapType mapType) { return (GoogleChinaWebViewMapFragment) new GoogleChinaWebViewMapFragment() .setArguments(mapType); } @Override protected boolean isChinaMode() { return true; } }