给定一个URI,返回该URI的基本路径。
Name | Type | Default | Description |
---|---|---|---|
uri |
String | Uri. | |
includeQuery |
Boolean |
false
|
optional 是否包含查询字符串和uri片段。 |
返回值:
Uri的基本路径。
示例:
// basePath 将为 "/Gallery/";
var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false');
// basePath 将为 "/Gallery/?value=true&example=false";
var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false', true);