diff --git a/drupal/sites/all/modules/custom/location/supported/location.cw.inc b/drupal/sites/all/modules/custom/location/supported/location.cw.inc
new file mode 100644
index 0000000..def1701
--- /dev/null
+++ b/drupal/sites/all/modules/custom/location/supported/location.cw.inc
@@ -0,0 +1,25 @@
+<?php
+
+/**
+ * @file
+ * Curaçao.
+ */
+
+/**
+ * Returns an associative array of states/territories.
+ */
+function location_province_list_cw() {
+  return array();
+}
+
+/**
+ * Returns minimum and maximum latitude and longitude needed for bounding box.
+ */
+function location_bounds_cw() {
+  return array(
+    'minlng' => -69.157204,
+    'minlat' => 12.385672,
+    'maxlng' => -68.733948,
+    'maxlat' => 12.385672,
+  );
+}
