EMLocationMessageBody constructor

EMLocationMessageBody(String address, double latitude, double longitude, [ EMLocationMessageBody body ])

初始化方法, address: 地址名称; latitude: 维度; longitude: 经度

Implementation

EMLocationMessageBody(String address, double latitude, double longitude,
    [EMLocationMessageBody body])
    : this.address = address,
      this.latitude = latitude,
      this.longitude = longitude,
      this._body = body;