I am switching google maps from v2 to v3 and I am running into a problem with finding the conversion from GSize. Does anyone know how to make the change.
opts = {
'labelText': infoname,
'labelClass': 'citymarkers',
'labelOffset': new GSize(-35, -40)
};
var marker = new LabeledMarker(
new google.maps.LatLng(this.lat, this.lng),
opts);
this.labelOffset = options.labelOffset || new GSize(0, 0);